@charset "UTF-8";
.hero-sec {
  padding: 120px 15px;
}
@media screen and (max-width: 767px) {
  .hero-sec {
    padding: 80px 15px;
  }
}
.hero-sec__sub-heading {
  font-weight: 600;
  text-align: center;
  width: fit-content;
  margin: 0 auto 50px;
  position: relative;
  z-index: 0;
  padding: 0 120px;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading {
    margin: 0 auto 90px;
    padding: 0;
  }
}
.hero-sec__sub-heading:before, .hero-sec__sub-heading:after {
  content: "";
  width: 80px;
  height: 102px;
  position: absolute;
  bottom: 10px;
  background: url(../img/components/chara04.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading:before, .hero-sec__sub-heading:after {
    width: 58px;
    height: 75px;
    bottom: -40px;
  }
}
.hero-sec__sub-heading:before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading:before {
    left: 32px;
  }
}
.hero-sec__sub-heading:after {
  right: 0;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading:after {
    right: 40px;
  }
}
.hero-sec__sub-heading-title {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  padding: 0 56px;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title {
    padding: 0;
  }
}
.hero-sec__sub-heading-title span {
  font-size: 32px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title span {
    font-size: 22px;
    line-height: 1.8;
  }
}
.hero-sec__sub-heading-title .em {
  font-size: 40px;
  color: #FF622E;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title .em {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .hero-sec__sub-heading-title .underline {
    position: relative;
    z-index: 0;
  }
  .hero-sec__sub-heading-title .underline:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: radial-gradient(circle, #FFE356 50%, transparent 50%);
    background-size: 9px 5px;
    background-repeat: repeat-x;
    background-position: left bottom;
    bottom: -5px;
  }
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title .sp-underline {
    position: relative;
    z-index: 0;
  }
  .hero-sec__sub-heading-title .sp-underline:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-image: radial-gradient(circle, #FFE356 50%, transparent 50%);
    background-size: 9px 5px;
    background-repeat: repeat-x;
    background-position: left bottom;
    bottom: -7px;
  }
}
.hero-sec__sub-heading-title:before, .hero-sec__sub-heading-title:after {
  content: "";
  position: absolute;
  bottom: 14px;
  background: #FFD117;
  mask: url(../img/components/ico-flare.svg) no-repeat center center/contain;
  aspect-ratio: 53/44;
  width: 53px;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title:before, .hero-sec__sub-heading-title:after {
    bottom: 51px;
    width: 36px;
  }
}
.hero-sec__sub-heading-title:before {
  left: 0;
}
.hero-sec__sub-heading-title:after {
  right: 0;
  transform: scaleX(-1);
}
.hero-sec__sub-heading-title-row {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero-sec__sub-heading-title-sp-row {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

.trouble-contents {
  padding: 60px;
  background: #EBF2F6;
  border-radius: 20px;
  position: relative;
  z-index: 0;
  margin: 0 0 70px;
}
@media screen and (max-width: 767px) {
  .trouble-contents {
    padding: 50px 15px 40px;
    margin: 0 -15px 40px;
  }
}
.trouble-contents:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -25px;
  width: 116px;
  height: 116px;
  background: #EBF2F6;
  border-radius: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .trouble-contents:before {
    width: 48px;
    height: 48px;
    bottom: -10px;
    border-radius: 0 0 5px 0;
  }
}
.trouble-contents__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .trouble-contents__list {
    gap: 20px;
  }
}
.trouble-contents__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .trouble-contents__item {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.08);
  }
}
.trouble-contents__item-icon {
  margin: 0 0 20px;
  text-align: center;
}
.trouble-contents__item-title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}
.trouble-contents__item-title .em {
  color: #1A9BF3;
}
.trouble-contents__item-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 !important;
}

.solution-contents__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 32px;
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .solution-contents__title {
    font-size: 24px;
    text-align: center;
    position: relative;
    z-index: -1;
    gap: 0;
    margin: 0 0 30px;
  }
}
.solution-contents__title-logo {
  margin: 0 12px 0 0;
}
@media screen and (max-width: 767px) {
  .solution-contents__title-logo {
    margin: 0 7px 0 0;
    width: 194px;
  }
}
.solution-contents__title-row:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .solution-contents__title-row:not(:first-of-type) {
    margin-top: 6px;
  }
}
.solution-contents__title:before {
  content: "";
  width: 187px;
  height: 195px;
  background: url(../img/feature/solution-title.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .solution-contents__title:before {
    width: 110px;
    height: 115px;
    position: absolute;
    z-index: -1;
    bottom: -50px;
    left: -27px;
  }
}
.solution-contents__body {
  padding: 55px 15px;
  position: relative;
  z-index: 0;
  background: #FFF8D8;
  border-radius: 20px;
  margin: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .solution-contents__body {
    padding: 45px 35px;
    margin: 0 -15px;
  }
}
.solution-contents__body:before, .solution-contents__body:after {
  content: "";
  position: absolute;
}
.solution-contents__body:before {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  top: 15px;
  border-radius: 15px;
  border: 2px dashed #FF622E;
  pointer-events: none;
}
.solution-contents__body:after {
  bottom: -16px;
  right: 60px;
  background: url(../img/components/chara01.svg) no-repeat center center/contain;
  width: 58px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .solution-contents__body:after {
    right: 30px;
    bottom: -12px;
    width: 43px;
    height: 60px;
  }
}
.solution-contents__body p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  margin: 0 !important;
}
.solution-contents__body-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  font-weight: 600;
  color: #222222;
}
.solution-contents__body-text .em {
  color: #1A9BF3;
}

.functions-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .functions-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}

.reasons-sec {
  margin: 120px 0 0;
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .reasons-sec {
    margin: 80px 0 0;
    padding: 80px 15px;
    border-radius: 20px;
  }
}
.reasons-sec__lists {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px 30px;
  position: relative;
  z-index: 0;
}
.reasons-sec__lists:before, .reasons-sec__lists:after {
  content: "";
  position: absolute;
}
.reasons-sec__lists:before {
  width: 68px;
  height: 80px;
  background: url(../img/top/recommend_chara01.svg) no-repeat center center/contain;
  top: -80px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .reasons-sec__lists:before {
    width: 51px;
    height: 60px;
    top: -60px;
    left: 10px;
  }
}
.reasons-sec__lists:after {
  width: 60px;
  height: 163px;
  background: url(../img/top/recommend_chara02.svg) no-repeat center center/contain;
  bottom: 0;
  right: -52px;
}
@media screen and (max-width: 767px) {
  .reasons-sec__lists:after {
    display: none;
  }
}
.reasons-sec__lists-item {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .reasons-sec__lists-item {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
    padding: 20px;
    border-radius: 10px;
  }
}
.reasons-sec__lists-item-img {
  margin: 0 0 15px;
}
.reasons-sec__lists-item-heading {
  text-align: center;
  margin: 0 0 15px;
}
.reasons-sec__lists-item-ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  width: 100%;
  padding: 0 0 9px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.reasons-sec__lists-item-ttl:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 9px;
  background: url(../img/top/recommend_ttl_obj.svg) no-repeat center center/contain;
}
.reasons-sec__lists-item-subttl {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 600;
}
.reasons-sec__lists-item-subttl span {
  color: #FF622E;
}
.reasons-sec__lists-item-body {
  font-size: 16px;
  line-height: 1.6;
}
.reasons-sec__lists-item-body span {
  font-weight: 600;
}
.reasons-sec__lists-item-body .c-link {
  margin-top: 15px;
}

.plan-sec {
  padding: 120px 15px;
}
@media screen and (max-width: 767px) {
  .plan-sec {
    padding: 80px 15px;
  }
}
.plan-sec__body {
  padding: 55px 15px 45px;
  position: relative;
  z-index: 0;
  background: #FFF8D8;
  border-radius: 20px;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .plan-sec__body {
    padding: 45px 35px;
    margin: 0 -15px 50px;
  }
}
.plan-sec__body:before, .plan-sec__body:after {
  content: "";
  position: absolute;
}
.plan-sec__body:before {
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 15px;
  top: 15px;
  border-radius: 15px;
  border: 2px dashed #FF622E;
  pointer-events: none;
}
.plan-sec__body:after {
  bottom: -16px;
  right: 60px;
  background: url(../img/components/chara01.svg) no-repeat center center/contain;
  width: 58px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .plan-sec__body:after {
    right: 30px;
    bottom: -12px;
    width: 43px;
    height: 60px;
  }
}
.plan-sec__body p {
  font-size: 26px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .plan-sec__body p {
    font-size: 18px;
    line-height: 1.8;
  }
}
.plan-sec__body-logo {
  width: 266px;
  margin: 0 14px 0 0;
}
@media screen and (max-width: 767px) {
  .plan-sec__body-logo {
    width: 150px;
    margin: 0 8px 8px 0;
  }
}
.plan-sec__body-text {
  color: #222222;
}
.plan-sec__body-text .em {
  color: #FF622E;
}
.plan-sec__body-text .num {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .plan-sec__body-text .num {
    font-size: 32px;
  }
}
.plan-sec__body-text-row:not(:first-of-type) {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .plan-sec__body-text-row:not(:first-of-type) {
    margin-top: 0;
  }
}

.faq-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .faq-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}

/* 簡単アプリ作成機能 */
.easy-hero {
  padding: 120px 15px;
}
@media screen and (max-width: 767px) {
  .easy-hero {
    padding: 80px 15px;
  }
}
.easy-hero__inner {
  position: relative;
  z-index: 0;
}
.easy-hero__title .em {
  color: #1A9BF3;
}
@media screen and (min-width: 1025px) {
  .easy-hero__img {
    position: absolute;
    left: 632px;
    top: -30px;
    width: 54.8%;
  }
}
.easy-hero__img--pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .easy-hero__img--pc {
    display: block;
  }
}
.easy-hero__img--sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .easy-hero__img--sp {
    display: block;
    margin: 0 0 20px;
    position: relative;
    z-index: 0;
  }
}
.easy-hero__img-animation {
  position: absolute;
  width: 64.59%;
  left: 18%;
  top: 5.5%;
  aspect-ratio: 416/253;
}
.easy-hero__img-animation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.easy-hero__text {
  font-size: 28px;
  font-weight: 600;
  color: #1A9BF3;
  line-height: 1.6;
  margin: 0 0 30px !important;
}
@media screen and (max-width: 1024px) {
  .easy-hero__text {
    font-size: 24px;
    margin: 0 0 20px !important;
  }
}
.easy-hero__tips {
  width: 580px;
  padding: 20px 20px 20px 130px;
  border-radius: 10px;
  background: #D7F2FF;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .easy-hero__tips {
    width: 100%;
    padding: 20px 30px;
    gap: 7px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.easy-hero__tips:before {
  content: "";
  position: absolute;
  width: 78px;
  height: 113px;
  background: url(../img/feature/easy/hero-tips-chara.svg) no-repeat center center/contain;
  bottom: 0;
  left: 22px;
}
@media screen and (max-width: 1024px) {
  .easy-hero__tips:before {
    width: 58px;
    height: 84px;
    left: auto;
    right: 10px;
    bottom: 0;
    transform: scale(-1, 1);
  }
}
.easy-hero__tips-title {
  font-size: 16px;
  line-height: 1.6;
}
.easy-hero__tips-lists {
  padding-block-start: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.easy-hero__tips-list {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.easy-hero__tips-list:before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A9BF3;
}

.easy-functions-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .easy-functions-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}
.easy-functions-sec:after {
  content: "";
  width: 1164px;
  height: 70px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: url(../img/top/functions_sec_obj.svg) repeat-x left center/contain;
}
@media screen and (max-width: 767px) {
  .easy-functions-sec:after {
    background: url(../img/top/sp/functions_sec_obj.svg) no-repeat center center/contain;
    width: 200px;
    height: 53px;
  }
}

.easy-example-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .easy-example-sec {
    padding: 80px 15px;
    border-radius: 20px;
  }
}
.easy-example-sec__contents {
  position: relative;
  z-index: 0;
}
.easy-example-sec__contents:before {
  content: "";
  position: absolute;
  width: 68px;
  height: 80px;
  background: url(../img/top/recommend_chara01.svg) no-repeat center center/contain;
  top: -80px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .easy-example-sec__contents:before {
    width: 50px;
    height: 59px;
    top: -59px;
    left: 10px;
  }
}

.easy-case-sec {
  padding: 120px 15px 0;
}
@media screen and (max-width: 767px) {
  .easy-case-sec {
    padding: 80px 15px 0;
  }
}
.easy-case-sec__btn {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .easy-case-sec__btn {
    margin: 50px auto 0;
  }
}

.easy-faq-sec {
  padding: 120px 15px;
  background: #D7F2FF;
  border-radius: 50px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .easy-faq-sec {
    padding: 80px 15px;
    border-radius: 20px;
    margin-top: 80px;
  }
}

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