@charset "UTF-8";

.c-items3 {
  list-style: none;
  counter-reset: num; /* カウンターをリセット */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border-top: solid 1px rgba(0, 0, 0, .3);
  margin-top: 40px;
  max-width: 960px;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .c-items3 {
    display: block;
    border-top: unset;
    border-left: solid 1px rgba(0, 0, 0, .3);
  }
}

.c-item3 {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 23.4375%;
  border-radius: 4px;
  padding: 30px 24px;
  margin-top: 30px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  position: relative;
}
@media (min-width: 1200px) {
  .c-item3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-item3 {
    width: 79.5053003534%;
    margin-left: 50px;
    margin-right: 55px;
  }
}
@media screen and (max-width: 1120px) {
  .c-item3 {
    padding: 30px 12px;
  }
}

.c-item3-img {
  position: absolute;
  left: 50%;
  top: -49px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-item3-img {
    left: -60px;
    top: 55%;
    -webkit-transform: translateX(-50%);
    transform: translateY(-50%);
  }
}

.c-item3__numbers {
  font-weight: 700;
  line-height: 100%;
  color: #6DC312;
  text-align: center;
}

.c-items__number {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  line-height: 100%;
}

.c-item3__title {
  font-size: 1.4rem;
  margin-top: 30px;
  line-height: 160%;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1px;
  min-height: 3.2em;
}
@media (min-width: 1201px) {
  .c-item3__title {
    font-size: 16px;
  }
}

.c-item3__text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  margin-top: 7px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0;
}
.c-item3__text.--step1 {
  letter-spacing: 0.8px;
}
.c-item3__text.--step2 {
  letter-spacing: -0.1px;
}
@media (min-width: 1201px) {
  .c-item3__text {
    font-size: 14px;
  }
}

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]), .hs-custom-style fieldset {
    margin-right: 0 !important;
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.hs-custom-style .hs-input:not([type=checkbox]):not([type=radio]),
.hs-custom-style fieldset {
  margin-right: 0 !important;
  width: 100% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; /* ←ここを追加 */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; /* 横並びにしたい場合 */
  gap: 10px; /* 子要素の間隔を調整 */
}

.c-item1 {
  text-align: center;
  padding: 30px 10px;
  border-radius: 10px;
}

.c-item1__subTitle {
  min-width: 96px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
  display: inline-block;
  color: #fff;
  border-radius: 16px;
  padding: 3px 0;
  background: #6DC312;
}

.c-item__title {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 160%;
  font-weight: 700;
  color: #007C72;
}
@media (min-width: 1201px) {
  .c-item__title {
    font-size: 24px;
  }
}

.c-item__img {
  margin-top: 20px;
}

.c-items2 {
  counter-reset: num;
}

.c-item2__title {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 160%;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-item2__title {
    font-size: 18px;
  }
}
@media (min-width: 1201px) {
  .c-item2__title {
    font-size: 24px !important;
  }
}

.c-item2 {
  position: relative;
  padding: 66px 30px 40px;
  counter-increment: num; /* カウンターを進める */
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  border-radius: 10px;
}
.c-item2::before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: 35px; /* ←ここを変えれば自由に動かせる！ */
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  min-width: 60px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
  display: inline-block;
  color: #fff;
  border-radius: 16px;
  padding: 3px 0;
  background: #6DC312;
  font-family: "Inter", sans-serif;
}

.c-item2__img {
  margin-top: 20px;
}
.c-item2__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/200;
}

.c-item2__listItems {
  margin-top: 21px;
  line-height: 200%;
  letter-spacing: 1px;
  font-weight: 700;
  color: #007C72;
}

.c-item2__list {
  font-size: 16px;
  list-style: disc;
  margin-left: 18px;
}

.c-item2__text {
  display: block;
  margin-top: 20px;
}

.dropdown__listsWrap {
  position: absolute;
  top: 20px;
  left: 0;
}

.dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 214px;
  margin-top: 20%;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
}

.nav-menuListItem:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
  background-color: white;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin-left: 0 !important;
  font-size: 14px;
}
.dropdown__list a {
  display: inline-block;
  padding-bottom: 6px;
}

.dropdown__list:not(:first-child) {
  margin-top: 20px;
}

.dropdown__list a:hover {
  color: #6DC312;
}

.dropdown__list a {
  color: #000;
  text-decoration: none;
  position: relative;
}

.sec1 {
  background-color: #6DC312;
  border-radius: 10px;
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  color: #fff;
  font-size: 24px;
  letter-spacing: 1.6px;
  font-weight: 700;
  width: 96%;
}
@media screen and (max-width: 767px) {
  .sec1 {
    font-size: 12px;
    padding: 20px 0;
  }
}
.sec1 span {
  font-size: 64px;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .sec1 span {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

.sec1-img {
  margin-top: 30px;
  padding: 0 100px;
}
@media screen and (max-width: 767px) {
  .sec1-img {
    margin-top: 15px;
    padding: 0 10px;
  }
}

.sec2 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .sec2 {
    padding-top: 40px;
  }
}

.sec2-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .sec2-title {
    font-size: 22px;
  }
}

.sec2-items {
  margin-top: 40px;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sec2-items {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec2-item {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  width: 27.7777777778%;
}
@media screen and (max-width: 767px) {
  .sec2-item {
    width: 100%;
  }
}

.sec3 {
  position: relative;
  padding: 142px 0;
}
@media screen and (max-width: 767px) {
  .sec3 {
    padding: 70px 0;
  }
}
.sec3 p {
  font-size: 36px;
  line-height: 160%;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec3 p {
    font-size: 16px;
  }
}
.sec3 p span {
  color: #007C72;
}
.sec3::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/top/sec3-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .sec3::before {
    width: 140px;
    height: 140px;
  }
}

.sec4-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .sec4-items {
    grid-template-columns: 1fr;
  }
}

.sec5 {
  padding-top: 55px;
  overflow: scroll;
}

.sec5-content {
  padding: 30px 30px 41px 30px;
  background: #F1F5F9;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 960px;
  margin: 40px auto;
}

.sec5-content1,
.sec5-content2,
.sec5-content3 {
  text-align: center;
  width: 31.1111111111%;
}

.sec5-content__title {
  font-size: 24px;
  line-height: 160%;
  font-weight: 700;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .sec5-content__title {
    font-size: 24px;
  }
}

.sec5-content__item {
  background: #FFFFFF;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  padding: 10px 0;
  margin-top: 13px;
}
.sec5-content__item:first-of-type {
  margin-top: 20px;
}

.sec5-content1 .sec5-content__item {
  color: #6DC312;
}

.sec5-content2 .sec5-content__item {
  color: #007C72;
}

.sec5-content3 .sec5-content__item {
  color: #00382F;
}

.sec6 {
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .sec6-items {
    width: 73.8903394256%;
    margin: 0 auto;
  }
}

.sec6-copy {
  margin-top: 46px;
  text-align: center;
  font-size: 20px;
  line-height: 160%;
  font-weight: 700;
}

.p-test {
  color: red;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
