@charset "UTF-8";
/* -----------------------------------------------
* common
-------------------------------------------------- */
.site_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main__wrapper {
  width: calc(1000 / 1400 * 100%);
}

.main__wrapper02 {
  width: 100%;
}

.inner {
  width: 800px;
  margin: 0 auto;
}

.xl_show {
  display: none;
}

.lg_show {
  display: none;
}

.md_show {
  display: none;
}

.heading {
  font-size: 30px;
  font-weight: 700;
  line-height: calc(44 / 30);
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
.heading:after {
  content: "";
  width: 70px;
  height: 3px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right bottom, from(#258E21), to(#4FBC4B));
  background: linear-gradient(to bottom right, #258E21, #4FBC4B);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.heading .large {
  font-size: 36px;
  line-height: calc(52 / 36);
}
.heading .colored {
  color: #1E831A;
}
.heading .number {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: calc(67 / 56);
}

.header__logo img {
  width: 340px;
}

.button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 220px;
  margin: 0 auto;
  position: relative;
}
.button:before {
  content: "";
  width: 100%;
  height: 100%;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right bottom, from(#258E21), to(#4FBC4B));
  background: linear-gradient(to bottom right, #258E21, #4FBC4B);
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.button span {
  display: block;
  background-color: #fff;
  color: #1E831A;
  font-size: 15px;
  font-weight: 700;
  line-height: calc(21 / 15);
  text-align: center;
  padding: 16px 32px;
  border-radius: 2px;
  position: relative;
}
.button span:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 2px solid #1E831A;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.button span:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1E831A;
  border-right: 2px solid #1E831A;
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.js_fade_in {
  opacity: 0;
  -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, transform 1.2s;
  transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}
.js_fade_in.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* -----------------------------------------------
* header
-------------------------------------------------- */
.header {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(1000 / 1400 * 100%);
  height: 90px;
  padding-left: 100px;
}

.header__logo {
  display: inline-block;
  width: 270px;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(400 / 1400 * 100%);
  height: 90px;
}

.header__tel {
  color: #1E831A;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: calc(48 / 40);
  pointer-events: none;
}

.header__time {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(19 / 16);
}

/* -----------------------------------------------
* contact
-------------------------------------------------- */
.contact {
  width: calc(400 / 1400 * 100%);
  height: calc(100dvh - 90px);
  height: calc(100vh - 90px);
  background-color: #f7f7f7;
  padding: 20px 25px;
  position: fixed;
  top: 90px;
  right: 0;
  overflow-y: scroll;
}

.contact__lead {
  color: #1E831A;
  font-size: 20px;
  font-weight: 500;
  line-height: calc(29 / 20);
  text-align: center;
  margin-bottom: 15px;
}
.contact__lead span {
  display: inline-block;
}

.satori__custom_form_5dd10883a335fd70_css .satori__submit_group .satori__btn {
  width: 100%;
  padding: 10px 20px !important;
}

/* -----------------------------------------------
* floating
-------------------------------------------------- */
.floating {
  width: 100%;
  background-color: #EFEFEF;
  padding: 10px 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.floating__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  background-color: #FE5E01;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: calc(17 / 12);
  text-align: center;
  border-radius: 2px;
  padding: 6px 24px;
  margin: 0 auto;
  position: relative;
}
.floating__button:after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.floating__button .large {
  font-size: 15px;
  font-weight: 700;
  line-height: calc(21 / 15);
}
.floating__button .icon {
  display: inline-block;
  text-align: left;
  padding-left: 36px;
  position: relative;
}
.floating__button .icon:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 16px;
  background: center/contain no-repeat url(../img/icon_mail.svg);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* -----------------------------------------------
* footer
-------------------------------------------------- */
.footer {
  background-color: #111;
  padding: 60px 0;
}

.footer__copy {
  color: #fff;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 15px;
  line-height: calc(18 / 15);
  text-align: center;
}

/* -----------------------------------------------
* mv
-------------------------------------------------- */
.mv {
  background: center/cover url(../img/bg_mv.jpg);
  padding: 64px 0 70px;
  position: relative;
}
.mv:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.58);
  position: absolute;
  top: 0;
  left: 0;
}

.mv__label {
  display: block;
  width: 284px;
  margin: 0 auto;
  position: relative;
}

.mv__text {
  width: 245px;
  position: absolute;
  top: 32px;
  right: 28px;
}

.mv__heading {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: calc(46 / 32);
  text-align: center;
  padding: 0 15px;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.mv__heading .large {
  font-size: 50px;
  line-height: calc(72 / 50);
}

.mv__lead {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(36 / 20);
  text-align: center;
  padding: 0 35px;
  margin-top: 20px;
  position: relative;
}

.mv__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 15px;
  padding: 0 35px;
  margin-top: 38px;
  position: relative;
}

.mv__item {
  border: 3px solid #1E831A;
}

/* -----------------------------------------------
* problem
-------------------------------------------------- */
.problem {
  background-color: #EFEFEF;
  padding: 50px 0 80px;
}

.problem__wrapper {
  background-color: #fff;
  padding: 40px 70px 45px;
  margin-top: 32px;
  position: relative;
}

.problem__image {
  width: 272px;
  position: absolute;
  right: 20px;
  bottom: 23px;
}

.problem__item {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
  padding-left: 36px;
  position: relative;
}
.problem__item:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 28px;
  background: center/contain no-repeat url(../img/icon_check.svg);
  position: absolute;
  top: 0;
  left: 0;
}
.problem__item:not(:first-of-type) {
  margin-top: 22px;
}
.problem__item .large {
  display: inline-block;
  color: #1E831A;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(29 / 20);
  margin-top: 2px;
}

/* -----------------------------------------------
* reason
-------------------------------------------------- */
.reason {
  background: center/cover url(../img/bg_reason.png);
  padding: 50px 0 104px;
}

.reason__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 30px;
  margin-top: 32px;
}

.reason__list {
  width: 50%;
}
.reason__list:nth-of-type(2) {
  margin-top: 50px;
}

.reason__item {
  background-color: #EFF7EF;
  padding: 40px 20px;
}
.reason__item.lp_flex {
  display: flex;
  flex-direction: column;
}
.reason__item.lp_flex .reason__image {
  margin-top: auto;
}
.reason__item.lp_flex:nth-of-type(3) .reason__text {
  margin-top: 68px;
}
.reason__item:not(:first-of-type) {
  /* margin-top: 40px; */
}

.reason__title {
  color: #1E831A;
  font-size: 20px;
  line-height: calc(29 / 20);
  text-align: center;
}
.reason__title .large {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: calc(40 / 30);
  margin-top: 2px;
}

.reason__text {
  font-size: 18px;
  line-height: calc(28 / 18);
  margin-top: 26px;
}

.reason__image {
  margin-top: 30px;
}

/* -----------------------------------------------
* achievement
-------------------------------------------------- */
.achievement {
  background-color: #EFF7EF;
  padding: 50px 0 110px;
}

.achievement__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 40px;
}

.achievement__item {
  background-color: #fff;
  padding: 20px 20px 30px;
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 18px rgba(0, 0, 0, 0.06);
}

.achievement__content {
  margin-top: 20px;
}

.achievement__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26 / 18);
}

.achievement__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32 / 22);
  margin-top: 10px;
}

.achievement__text {
  font-size: 16px;
  line-height: calc(28 / 16);
  margin-top: 16px;
}

/* -----------------------------------------------
* slide
-------------------------------------------------- */

.slide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.slide__item {
  width: calc(33.3% - 20px * 2 / 3);
  background-color: #fff;
  padding: 20px 20px 25px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
}
.slide__item:not(:nth-of-type(3n)) {
  margin-right: 20px;
}
.slide__item:nth-of-type(n + 4) {
  margin-top: 30px;
}

.slide__content {
  margin-top: 20px;
}

.slide__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: calc(24 / 16);
  white-space: nowrap;
}

.slide__title {
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32 / 22);
  white-space: nowrap;
  margin-top: 6px;
}

.slide__text {
  font-size: 14px;
  line-height: calc(26 / 14);
  margin-top: 16px;
}

.slide__arrow {
  width: 32px;
  height: 32px;
  position: absolute;
}

.slide__arrow--prev {
  border-top: 8px solid #1E831A;
  border-left: 8px solid #1E831A;
  top: 50%;
  left: -38px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.slide__arrow--next {
  border-top: 8px solid #1E831A;
  border-right: 8px solid #1E831A;
  top: 50%;
  right: -38px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* -----------------------------------------------
* request
-------------------------------------------------- */
.request {
  background: center/cover url(../img/bg_request.png);
  padding: 70px 0 80px;
}

.request__wrapper {
  padding: 0 30px;
  margin-top: 40px;
}

.request__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.request__item:not(:first-of-type) {
  margin-top: 28px;
}

.request__title {
  width: calc(230 / 740 * 100%);
  color: #1E831A;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32 / 22);
  text-align: center;
  padding: 10px 5px;
  border: 2px solid #1E831A;
}

.request__text {
  width: calc(495 / 740 * 100%);
  font-size: 15px;
  line-height: calc(25 / 15);
}

/* -----------------------------------------------
* support
-------------------------------------------------- */
.support {
  background-color: #EFF7EF;
  padding: 60px 0 0;
}

.support__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(30 / 18);
  margin: 30px auto 0;
}

.support__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  padding: 0 30px;
  margin-top: 50px;
}

.support__title {
  background: -webkit-gradient(linear, left top, right bottom, from(#258E21), to(#4FBC4B));
  background: linear-gradient(to bottom right, #258E21, #4FBC4B);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(32 / 22);
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.support__title:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 56px 20px 0 0px;
  border-color: #EFF7EF transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.support__title:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0px 56px 20px;
  border-color: transparent transparent #EFF7EF transparent;
  position: absolute;
  right: 0;
  bottom: 0;
}
.support__title .icon {
  position: relative;
}
.support__title .icon--1 {
  padding-left: 44px;
}
.support__title .icon--1:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 40px;
  background: center/contain no-repeat url(../img/icon_support1.png);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.support__title .icon.icon--2 {
  padding-left: 54px;
}
.support__title .icon.icon--2:before {
  content: "";
  display: inline-block;
  width: 41px;
  height: 41px;
  background: center/contain no-repeat url(../img/icon_support2.svg);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.support__title .icon.icon--3 {
  padding-left: 54px;
}
.support__title .icon.icon--3:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 34px;
  background: center/contain no-repeat url(../img/icon_support3.png);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.support__title .icon.icon--4 {
  padding-left: 63px;
}
.support__title .icon.icon--4:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 36px;
  background: center/contain no-repeat url(../img/icon_support4.png);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.support__list {
  width: 234px;
  margin: 20px auto 0;
}

.support__list_item {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26 / 18);
  padding-left: 17px;
  position: relative;
}
.support__list_item:before {
  content: "■";
  display: inline-block;
  color: #1E831A;
  font-size: 10px;
  font-weight: 700;
  line-height: calc(15 / 10);
  margin-right: 7px;
  position: absolute;
  top: 6px;
  left: 0;
}
.support__list_item:not(:first-of-type) {
  margin-top: 10px;
}

.support__image {
  margin-top: 80px;
}

/* -----------------------------------------------
* article
-------------------------------------------------- */
.article {
  background: center/cover url(../img/bg_article.png);
  padding: 54px 0 100px;
}

.article02 {
  padding: 150px 0 100px;
}

.article__heading:not(:first-of-type) {
  margin-top: 60px;
}

.article__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
  margin-top: 30px;
}

.article__item a {
  display: block;
}

.article__content {
  margin-top: 10px;
}

.article__title {
  font-size: 16px;
  font-weight: 700;
  line-height: calc(24 / 16);
}

.article__text {
  font-size: 14px;
  line-height: calc(20 / 14);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}

.article__subtitle {
  font-size: 13px;
  font-weight: 500;
  line-height: calc(19 / 13);
  margin-bottom: 4px;
}

.article__button {
  margin-top: 30px;
}

/* -----------------------------------------------
* responsive
-------------------------------------------------- */

@media (max-width: 991px) {
  .main {
    display: block;
  }
  .main__wrapper {
    width: 100%;
  }
  .lg_show {
    display: block;
  }
  .lg_hide {
    display: none;
  }
  .header__left {
    width: calc(100% - 160px);
    height: 90px;
    padding-left: 15px;
  }
  .header__logo img {
    width: 180px;
  }
  .header__right {
    width: 160px;
    height: 90px;
    padding-right: 15px;
  }
  .header__tel {
    font-size: 20px;
    line-height: calc(24 / 20);
    pointer-events: auto;
  }
  .header__time {
    font-size: 10px;
    line-height: calc(12 / 10);
  }
  .contact {
    width: 100%;
    height: auto;
    position: static;
    padding: 30px 15px 50px;
  }
  .contact__lead {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .inner {
    width: 100%;
    padding: 0 15px;
  }
  .xl_show {
    display: block;
  }
  .xl_hide {
    display: none;
  }
  .contact {
    padding: 20px 15px;
  }
  .mv__text {
    width: 180px;
  }
  .slide__subtitle {
    white-space: normal;
  }
  .slide__title {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .md_show {
    display: block;
  }
  .md_hide {
    display: none;
  }
  .heading {
    font-size: 20px;
    line-height: calc(29 / 20);
    padding-bottom: 18px;
  }
  .heading .large {
    font-size: 26px;
    line-height: calc(37 / 26);
  }
  .heading .number {
    font-size: 36px;
    line-height: calc(43 / 36);
  }
  .header__left {
    width: 100%;
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__right {
    display: none;
  }
  .footer {
    padding: 42px 0;
  }
  .footer__copy {
    font-size: 13px;
    line-height: calc(16 / 13);
  }
  .mv {
    padding: 24px 0 40px;
  }
  .mv__label {
    width: 214px;
  }
  .mv__text {
    display: block;
    margin: 18px auto 0;
    position: relative;
    top: auto;
    right: auto;
  }
  .mv__heading {
    font-size: 18px;
    line-height: calc(28 / 16);
    text-align: left;
    margin-top: 12px;
  }
  .mv__heading .large {
    font-size: 30px;
    line-height: calc(42 / 30);
  }
  .mv__lead {
    font-size: 17px;
    line-height: calc(28 / 17);
    text-align: left;
    padding: 0;
    margin-top: 10px;
  }
  .mv__list {
    grid-template-columns: none;
    padding: 0;
    margin-top: 17px;
  }
  .problem {
    padding: 30px 0 40px;
  }
  .problem__wrapper {
    margin-top: 25px;
    padding: 28px 20px 25px;
  }
  .problem__image {
    display: block;
    width: 247px;
    margin: 26px auto 0;
    position: static;
  }
  .problem__item {
    font-size: 17px;
    line-height: calc(25 / 17);
    padding-left: 32px;
  }
  .problem__item:before {
    width: 28px;
    height: 25px;
  }
  .problem__item:not(:first-of-type) {
    margin-top: 17px;
  }
  .problem__item .large {
    font-size: 18px;
    line-height: calc(24 / 18);
  }
  .reason {
    background: center/cover url(../img/bg_reason_sp.png);
    padding: 30px 0 40px;
  }
  .reason__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
  }
  .reason__list {
    display: contents;
  }
  .reason__list:nth-of-type(2) {
    margin-top: 0;
  }
  .reason__item {
    padding: 30px 20px 20px;
  }
  .reason__item:not(:first-of-type) {
    margin-top: 0;
  }
  .reason__title {
    font-size: 17px;
    line-height: calc(25 / 17);
  }
  .reason__title .large {
    font-size: 24px;
    line-height: calc(35 / 24);
  }
  .reason__text {
    font-size: 16px;
    line-height: calc(26 / 16);
    margin-top: 16px;
  }
  .reason__image {
    margin-top: 20px;
  }
  .achievement {
    padding: 30px 0 40px;
  }
  .achievement__list {
    grid-template-columns: none;
    margin-top: 25px;
  }
  .achievement__item {
    padding: 15px 20px 30px;
  }
  .achievement__subtitle {
    font-size: 16px;
    line-height: calc(24 / 16);
  }
  .achievement__heading {
    font-size: 20px;
    line-height: calc(29 / 20);
    margin-top: 7px;
  }
  .achievement__text {
    line-height: calc(26 / 16);
    margin-top: 15px;
  }
  .slide {
    width: calc(100% + 15px);
    margin-right: -15px;
    overflow-x: scroll;
  }
  .slide__list {
    margin-top: 20px;
    padding-right: 15px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .slide__item {
    width: 254px;
  }
  .slide__item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .slide__item:nth-of-type(n + 4) {
    margin-top: 0;
  }
  .slide__item:not(:last-of-type) {
    margin-right: 20px;
  }
  .request {
    background: center/cover url(../img/bg_request_sp.png);
    padding: 30px 0 40px;
  }
  .request__wrapper {
    padding: 0;
    margin-top: 44px;
  }
  .request__item {
    display: block;
  }
  .request__item:not(:first-of-type) {
    margin-top: 30px;
  }
  .request__title {
    width: 100%;
    font-size: 20px;
    line-height: calc(29 / 20);
    padding: 6px 12px;
  }
  .request__text {
    width: 100%;
    font-size: 15px;
    line-height: calc(25 / 15);
    margin-top: 15px;
  }
  .support {
    padding: 30px 0 0;
  }
  .support__lead {
    font-size: 15px;
    line-height: calc(25 / 15);
  }
  .support__wrapper {
    grid-template-columns: none;
    gap: 30px 0;
    padding: 0;
    margin-top: 40px;
  }
  .support__title {
    font-size: 20px;
    line-height: calc(29 / 20);
  }
  .support__title .icon--1 {
    padding-left: 41px;
  }
  .support__title .icon--1:before {
    width: 29px;
    height: 38px;
  }
  .support__title .icon.icon--2 {
    padding-left: 52px;
  }
  .support__title .icon.icon--2:before {
    width: 40px;
    height: 40px;
  }
  .support__title .icon.icon--3 {
    padding-left: 50px;
  }
  .support__title .icon.icon--3:before {
    width: 38px;
    height: 32px;
  }
  .support__title .icon.icon--4 {
    padding-left: 60px;
  }
  .support__title .icon.icon--4:before {
    width: 48px;
    height: 35px;
  }
  .support__list {
    width: 100%;
    padding: 0 10px;
  }
  .support__list_item {
    font-size: 17px;
    line-height: calc(25 / 17);
  }
  .support__list_item:not(:first-of-type) {
    margin-top: 8px;
  }
  .support__image {
    margin-top: 40px;
  }
  .article {
    background: center/cover url(../img/bg_article_sp.png);
    padding: 50px 0;
  }
  .article__heading:not(:first-of-type) {
    margin-top: 40px;
  }
  .article__list {
    grid-template-columns: none;
  }
  .article__button {
    margin-top: 25px;
  }
  .reason__item.lp_flex .reason__text {
    margin-bottom: 16px;
  }
  .reason__item.lp_flex:nth-of-type(3) .reason__text {
    margin-top: 16px;
  }
}

@media (hover: hover) {
  .button:before {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button span {
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
  }
  .button span:before {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .button span:after {
    -webkit-transition: border-color 0.5s;
    transition: border-color 0.5s;
  }
  .button:hover:before {
    opacity: 1;
  }
  .button:hover span {
    background-color: transparent;
    color: #fff;
  }
  .button:hover span:before {
    opacity: 0;
  }
  .button:hover span:after {
    border-color: #fff;
  }
  .article__item a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .article__item a:hover {
    opacity: 0.5;
  }
}
/*# sourceMappingURL=style.css.map */