@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  overflow-x: hidden;
}
body.is-fixed {
  overflow-y: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.font-en {
  font-family: "Overpass", sans-serif;
}

.section__title-ja {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section__title-ja {
    font-size: 4rem;
  }
}
.section__title-ja::before {
  position: absolute;
  content: "";
  background: url(../img/section_icon.webp) no-repeat center center/contain;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 64px;
  height: 8px;
}

.section__title-en {
  display: block;
  font-weight: 700;
  line-height: 2;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .section__title-en {
    font-size: 1.6rem;
  }
}

.wrapper {
  margin-top: 100px;
}

.text__orange-dark {
  color: #e28301;
}

.bg__orange-light {
  background-color: #ffa426;
}

.bg__orange-dark {
  background-color: #e28301;
}

.bg__green-light {
  background-color: #99b901;
}

.bg__green-dark {
  background-color: #105f00;
}

.bg__red {
  background-color: #e10048;
}

.bg__yellow {
  background-color: #fdd401;
}

/* ======================================================
header
======================================================= */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 20px;
  height: 100px;
  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;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 40px;
  }
}

.header__logo {
  width: 189px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 237px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.header__nav-list {
  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;
}

.header__nav-item a {
  font-weight: 700;
  display: block;
  padding-block: 20px;
  padding-inline: 20px;
}
.header__nav-item a:hover {
  color: #105f00;
}

.header__button-contact {
  border-radius: 8px;
  border: 1px solid #105f00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.header__button-contact a {
  display: block;
  padding: 20px 33px;
  font-weight: 700;
  color: #105f00;
}
@media screen and (min-width: 768px) {
  .header__button-contact:hover {
    background-color: #fdd401;
  }
}

.header__button-request {
  border-radius: 8px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.header__button-request::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(265deg, #99b901 2.64%, #105f00 81.03%);
}
.header__button-request::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: #fdd401;
}
.header__button-request a {
  display: inline-block;
  padding: 5px 28px;
}
@media screen and (min-width: 768px) {
  .header__button-request:hover:before {
    opacity: 0;
  }
}

.button__request-small {
  display: inline-block;
  background-color: #fff;
  border-radius: 9px;
  color: #105f00;
  font-size: 1.4rem;
  padding-inline: 11px;
  padding-block: 2px;
}
.button__request-small strong {
  font-weight: 700;
}

.button__request-text {
  display: block;
  color: #fff;
  font-weight: 700;
}
.button__request-text strong {
  font-size: 2.4rem;
}

@media screen and (min-width: 1100px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer.is-active .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 13px;
}
.header__drawer.is-active .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.header__drawer.is-active .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  top: 50%;
  left: 13px;
}

/* ======================================================
drawer
======================================================= */
.drawer-icon {
  width: 56px;
  height: 56px;
  background-color: #000;
  border-radius: 50%;
  position: relative;
}

.drawer-icon__bar {
  position: absolute;
  background-color: #fff;
  width: 30px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-icon__bar:nth-child(1) {
  top: 17px;
}
.drawer-icon__bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon__bar:nth-child(3) {
  top: 39px;
}

.drawer-content {
  display: none;
  background-color: #105f00;
  width: 100%;
  height: calc(100vh - 72px);
  padding-top: 100px;
  position: fixed;
  z-index: 10;
}
.drawer-content.is-active {
  display: block;
}

.drawer-content__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.drawer-content__item {
  position: relative;
}
.drawer-content__item::before {
  position: absolute;
  content: "";
  background: url(../img/drawer_content_arrow.svg) no-repeat center center/contain;
  width: 11px;
  height: 6px;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-content__item:not(:first-child) {
  margin-top: 40px;
}
.drawer-content__item a {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  font-family: "Overpass", sans-serif;
}

/* ======================================================
first-wiew
======================================================= */
.fv {
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .fv {
    height: calc(100vh - 100px);
  }
}

.fv__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .fv__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: calc(100vh - 100px);
  }
}

.fv__message {
  margin-top: 7vh;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .fv__message {
    margin-top: 14vh;
    margin-inline: 0;
  }
}
.fv__message::before {
  position: absolute;
  content: "";
  background: url(../img/fv_background_1.webp) no-repeat center center/contain;
  top: -50px;
  left: -70px;
  width: 687px;
  height: 321px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv__message::before {
    top: -120px;
    left: -270px;
    width: 1776px;
    height: 760px;
  }
}

.fv__message-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .fv__message-title {
    font-size: 4.8rem;
  }
}

.fv__message-text {
  line-height: 2;
  margin-top: 15px;
}
.fv__message-text br.is-pc {
  display: none;
}
@media screen and (min-width: 1100px) {
  .fv__message-text br.is-pc {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .fv__message-text br.is-sp {
    display: none;
  }
}

.header__button-sp {
  margin-inline: auto;
  margin-top: 40px;
  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;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .header__button-sp {
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .header__button-sp {
    display: none;
  }
}
.header__button-sp .header__button-contact {
  text-align: center;
}

.fv__campaign {
  width: 308px;
  margin-top: 40px;
  padding-bottom: 50px;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .fv__campaign {
    margin-inline: 0;
    margin-top: -25vh;
    padding-bottom: 0;
  }
}

.fv__campaign-label {
  font-weight: 700px;
  color: #105f00;
  text-align: center;
}
.fv__campaign-label span::before {
  content: "\\ ";
}
.fv__campaign-label span::after {
  content: " /";
}
.fv__campaign-label span strong {
  font-size: 2rem;
  font-weight: 700;
}
.fv__campaign-label span strong.font-en {
  font-size: 2.4rem;
  font-weight: 900;
}

.fv__campaign-box {
  background-color: #99b901;
  border-radius: 8px;
  padding: 12px;
}

.fv__campaign-heading {
  color: #105f00;
  background-color: #fff;
  border-radius: 42.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px 10px 18px;
}

.fv__campaign-heading-left {
  font-weight: 700;
}

.fv__campaign-heading-right {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 3.2rem;
  margin-left: 10px;
  position: relative;
}
.fv__campaign-heading-right::after {
  position: absolute;
  content: "！";
  top: 50%;
  right: -27px;
  -webkit-transform: translateY(-40%) rotate(20deg);
          transform: translateY(-40%) rotate(20deg);
}

.fv__campaign-text {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin-top: 13px;
  line-height: 1.2;
}
.fv__campaign-text strong {
  font-size: 2rem;
}
.fv__campaign-text strong.font-en {
  font-size: 3rem;
}

.fv__mockup {
  position: relative;
  margin-top: 110px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__mockup {
    margin-top: 190px;
  }
}
@media screen and (min-width: 1100px) {
  .fv__mockup {
    margin-inline: 0;
    margin-top: 26vh;
  }
}
.fv__mockup::before {
  position: absolute;
  content: "";
  background: url(../img/fv_background_2.webp) no-repeat center center/contain;
  width: 280px;
  height: 280px;
  top: 95px;
  left: 210px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 600px) {
  .fv__mockup::before {
    top: 65px;
    left: 260px;
  }
}
@media screen and (min-width: 768px) {
  .fv__mockup::before {
    width: 587px;
    height: 587px;
    top: 140px;
    left: 400px;
  }
}

.fv__mockup-img {
  background: url(../img/fv_mockup.webp) no-repeat center center/contain;
  position: relative;
  width: 338px;
  height: 245px;
}
@media screen and (min-width: 768px) {
  .fv__mockup-img {
    width: 582px;
    height: 387px;
  }
}

.fv__mockup-text {
  background-color: #fff;
  border-radius: 50%;
  width: 89px;
  height: 89px;
  border: 2px solid #105f00;
  display: table;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.4rem;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .fv__mockup-text {
    font-size: 2rem;
    width: 130px;
    height: 130px;
  }
}
.fv__mockup-text span {
  display: table-cell;
  vertical-align: middle;
}
.fv__mockup-text b {
  font-size: 1.9rem;
  color: #99b901;
}
@media screen and (min-width: 768px) {
  .fv__mockup-text b {
    font-size: 2.8rem;
  }
}
.fv__mockup-text:nth-child(1) {
  top: -35px;
  right: 120px;
}
@media screen and (min-width: 600px) {
  .fv__mockup-text:nth-child(1) {
    top: -75px;
    right: 70px;
  }
}
@media screen and (min-width: 768px) {
  .fv__mockup-text:nth-child(1) {
    top: -115px;
    right: 130px;
  }
}
.fv__mockup-text:nth-child(2) {
  top: 0px;
  right: 30px;
}
@media screen and (min-width: 600px) {
  .fv__mockup-text:nth-child(2) {
    top: -30px;
    right: -20px;
  }
}
@media screen and (min-width: 768px) {
  .fv__mockup-text:nth-child(2) {
    top: -50px;
    right: -10px;
  }
}
.fv__mockup-text:nth-child(3) {
  top: 90px;
  right: 0px;
}
@media screen and (min-width: 600px) {
  .fv__mockup-text:nth-child(3) {
    top: 60px;
    right: -60px;
  }
}
@media screen and (min-width: 768px) {
  .fv__mockup-text:nth-child(3) {
    top: 90px;
    right: -70px;
  }
}

/* ======================================================
about
======================================================= */
.about {
  position: relative;
  padding-top: 50px;
}
@media screen and (min-width: 1100px) {
  .about {
    padding-top: 100px;
  }
}
.about::before {
  position: absolute;
  content: "";
  background: url(../img/about_background_1.webp) no-repeat top center/cover;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1090px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about::before {
    height: 772px;
  }
}
@media screen and (min-width: 1500px) {
  .about::before {
    background-size: contain;
  }
}

.about__inner {
  max-width: 970px;
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-inline: 40px;
  }
}

.about__worry {
  height: 1010px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__worry {
    height: 700px;
  }
}
@media screen and (min-width: 1100px) {
  .about__worry {
    height: 628px;
  }
}
.about__worry::before {
  position: absolute;
  content: "";
  background: url(../img/about_background_2.webp) no-repeat bottom center/contain;
  width: 288px;
  height: 194px;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__worry::before {
    width: 438px;
    height: 295px;
  }
}

.about__worry-read {
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__worry-read {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px) {
  .about__worry-read br {
    display: none;
  }
}

.about__worry-text-wrap {
  position: relative;
  margin-top: 38px;
}
@media screen and (min-width: 900px) {
  .about__worry-text-wrap {
    margin-top: 74px;
  }
}
.about__worry-text {
  line-height: 2;
  display: table;
  font-size: 1.8rem;
  text-align: center;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about__worry-text {
    font-size: 1.6rem;
  }
}
.about__worry-text p {
  display: table-cell;
  vertical-align: middle;
}
.about__worry-text:nth-child(1) {
  top: -50px;
  left: 50%;
  background: url(../img/about_ballon_1.webp) no-repeat top 50px center/contain;
  width: 235px;
  height: 282px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__worry-text:nth-child(1) {
    top: -10px;
    left: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.about__worry-text:nth-child(2) {
  top: 370px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/about_ballon_2.webp) no-repeat top 40px center/contain;
  width: 228px;
  height: 304px;
}
@media screen and (min-width: 900px) {
  .about__worry-text:nth-child(2) {
    top: -70px;
  }
}
.about__worry-text:nth-child(3) {
  top: 150px;
  right: 50%;
  background: url(../img/about_ballon_3.webp) no-repeat top 50px center/contain;
  width: 228px;
  height: 304px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 900px) {
  .about__worry-text:nth-child(3) {
    top: 0;
    right: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.about__worry-text span {
  font-weight: 700;
}

.about__offer {
  margin-top: 180px;
  height: 450px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__offer {
    margin-top: 281px;
  }
}
.about__offer::before {
  position: absolute;
  content: "";
  background: url(../img/about_icon_left.webp) no-repeat center center/contain;
  top: -180px;
  right: calc(50% + 70px);
  width: 102px;
  height: 161px;
}
@media screen and (min-width: 768px) {
  .about__offer::before {
    top: -350px;
    width: 200px;
    height: 400px;
    right: calc(50% + 100px);
  }
}
@media screen and (min-width: 1100px) {
  .about__offer::before {
    top: -120px;
    right: calc(50% + 220px);
    width: 362px;
    height: 570px;
  }
}
.about__offer::after {
  position: absolute;
  content: "";
  background: url(../img/about_icon_right.webp) no-repeat center center/contain;
  top: -180px;
  left: calc(50% + 70px);
  width: 102px;
  height: 161px;
}
@media screen and (min-width: 768px) {
  .about__offer::after {
    top: -350px;
    width: 200px;
    height: 400px;
    left: calc(50% + 100px);
  }
}
@media screen and (min-width: 1100px) {
  .about__offer::after {
    top: -120px;
    left: calc(50% + 220px);
    width: 362px;
    height: 570px;
  }
}

.about__offer-text-wrap {
  position: relative;
  text-align: center;
}
.about__offer-text-wrap::before {
  position: absolute;
  content: "";
  background: url(../img/about_background_3.webp) no-repeat top center/contain;
  width: 338px;
  height: 425px;
  top: -151px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__offer-text-wrap::before {
    width: 502px;
    height: 630px;
    top: -240px;
  }
}

.about__offer-text-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .about__offer-text-logo {
    font-size: 2.4rem;
  }
}
.about__offer-text-logo img {
  width: 188px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .about__offer-text-logo img {
    width: 266px;
    margin-right: 10px;
  }
}

.about__offer-text-strong {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .about__offer-text-strong {
    font-size: 3.2rem;
  }
}

.about__offer-text-foot {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about__offer-text-foot {
    margin-top: 15px;
  }
}

/* ======================================================
features
======================================================= */
.features {
  overflow: hidden;
  margin-top: -80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .features {
    margin-top: 100px;
  }
}

.features__bg {
  position: absolute;
  width: 1002px;
  height: 593px;
  z-index: -1;
}
.features__bg:nth-child(1) {
  background: url(../img/features_bg_1.webp) no-repeat center center/contain;
  top: -150px;
  right: calc(50% + 120px);
}
.features__bg:nth-child(2) {
  background: url(../img/features_bg_2.webp) no-repeat center center/contain;
  top: 230px;
  left: calc(50% + 120px);
}
.features__bg:nth-child(3) {
  background: url(../img/features_bg_1.webp) no-repeat center center/contain;
  top: 610px;
  right: calc(50% + 120px);
}

.section__title {
  text-align: center;
}

.features__inner {
  max-width: 920px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .features__inner {
    padding-inline: 40px;
  }
}

.features__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .features__block {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.features__block:not(:first-child) {
  margin-top: 100px;
}
.features__block:nth-child(1) .features__block-content::before {
  content: "01";
}
@media screen and (min-width: 768px) {
  .features__block:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.features__block:nth-child(2) .features__block-content::before {
  content: "02";
}
.features__block:nth-child(3) .features__block-content::before {
  content: "03";
}

.features__block-content {
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .features__block-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 500px;
            flex: 0 1 500px;
  }
}
.features__block-content::before {
  position: absolute;
  top: 20px;
  left: 0;
}

.features__block-heading {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .features__block-heading {
    font-size: 3.2rem;
    font-weight: 700;
  }
}

.features__block-text {
  line-height: 2;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .features__block-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 311px;
            flex: 0 1 311px;
  }
}

/* ======================================================
functions
======================================================= */
.functions {
  background-color: #f7f6f4;
  margin-top: 50px;
  padding-block: 50px;
}
@media screen and (min-width: 768px) {
  .functions {
    margin-top: 100px;
    padding-block: 100px;
  }
}

.functions__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .functions__inner {
    padding-inline: 40px;
  }
}

.functions__read {
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .functions__read {
    margin-top: 40px;
  }
}

.functions__read-heading {
  font-size: 1.6rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .functions__read-heading {
    font-size: 2.4rem;
  }
}
.functions__read-heading img {
  width: 188px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .functions__read-heading img {
    width: 266px;
    margin-right: 10px;
  }
}

.functions__read-text {
  line-height: 1.8;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .functions__read-text {
    font-size: 2.8rem;
    margin-top: 10px;
  }
}

.functions__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 600px) {
  .functions__list {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.functions__item {
  background-color: #fff;
  padding: 24px 30px;
  border-radius: 8px;
}
.functions__item:not(:first-child) {
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .functions__item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .functions__item {
    width: 47.6851851852%;
  }
  .functions__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .functions__item {
    width: 30.2465802469%;
  }
  .functions__item:nth-child(n+3) {
    margin-top: 0px;
  }
  .functions__item:nth-child(n+4) {
    margin-top: 40px;
  }
}

.functions__item-img {
  text-align: center;
}

.functions__item-title {
  text-align: center;
  margin-top: 24px;
  color: #fff;
  padding-block: 10px;
  border-radius: 22px;
  font-size: 2rem;
  font-weight: 700;
}

.functions__item-text {
  line-height: 2;
  margin-top: 16px;
  text-align: justify;
}

.functions__button {
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
  color: #105f00;
}
.functions__button a {
  border: 1px solid #105f00;
  border-radius: 8px;
  padding: 20px 69px 20px 37px;
  display: inline-block;
  position: relative;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.functions__button a::before {
  position: absolute;
  content: "";
  background: url(../img/arrow_right.webp) no-repeat center center/contain;
  width: 14px;
  height: 23px;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .functions__button a:hover {
    background-color: #fdd401;
  }
}

/* ======================================================
request
======================================================= */
.request {
  text-align: center;
  background: linear-gradient(267deg, #99b901 10.29%, #105f00 100%);
  padding: 26px 20px;
}
@media screen and (min-width: 768px) {
  .request {
    padding: 44px 40px;
  }
}

.request__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.request__heading {
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .request__heading {
    font-size: 2.6rem;
  }
}
.request__heading::before {
  position: absolute;
  content: "\\ ";
  left: -20px;
  top: 5px;
}
.request__heading::after {
  position: absolute;
  content: " /";
  right: -13px;
  top: 5px;
}
.request__heading strong {
  font-family: "Overpass", sans-serif;
  font-size: 3.2rem;
  padding-inline: 0.2em;
}

.request__button {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .request__button {
    margin-top: 15px;
  }
}
.request__button a {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 16px 20px 16px 60px;
  font-size: 2rem;
  font-weight: 700;
  color: #105f00;
  position: relative;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media screen and (min-width: 768px) {
  .request__button a {
    font-size: 2.4rem;
    padding: 23px 31px 23px 80px;
  }
}
.request__button a::before {
  position: absolute;
  content: "";
  background: url(../img/request_icon.webp) no-repeat center center/contain;
  width: 23px;
  height: 32px;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .request__button a::before {
    width: 28px;
    height: 39px;
  }
}
.request__button a strong {
  font-size: 3.3rem;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .request__button a strong {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .request__button a:hover {
    background-color: #fdd401;
  }
}

/* ======================================================
values
======================================================= */
.values {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .values {
    margin-top: 100px;
  }
}

.values__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .values__inner {
    padding-inline: 40px;
  }
}

.values__read {
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .values__read {
    margin-top: 72px;
  }
}

.values__read-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .values__read-heading {
    font-size: 2.4rem;
  }
}
.values__read-heading img {
  width: 188px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .values__read-heading img {
    width: 237px;
    margin-right: 10px;
  }
}

.values__read-strong {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 7px;
}
@media screen and (min-width: 768px) {
  .values__read-strong {
    margin-top: 16px;
    font-size: 2.8rem;
  }
}

.values__read-small {
  line-height: 2;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .values__read-small {
    margin-top: 16px;
  }
}

/*
--------------------------------------------------------*/
.values__example {
  margin-top: 40px;
}

.example__tab-wrap {
  display: none;
}
@media screen and (min-width: 768px) {
  .example__tab-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.example__tab {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  padding-block: 5px;
  border-radius: 8px 8px 0 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .example__tab {
    font-size: 2.8rem;
    width: 50%;
    color: #000;
    cursor: pointer;
  }
}
.example__tab.support01 {
  background-color: #105f00;
}
@media screen and (min-width: 768px) {
  .example__tab.support01 {
    background-color: #d9d9d9;
  }
}
.example__tab.support02 {
  background-color: #e10048;
}
@media screen and (min-width: 768px) {
  .example__tab.support02 {
    background-color: #d9d9d9;
  }
}
@media screen and (min-width: 768px) {
  .example__tab.is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .example__tab.is-active {
    color: #fff;
  }
  .example__tab.is-active.support01 {
    background-color: #105f00;
  }
  .example__tab.is-active.support02 {
    background-color: #e10048;
  }
}

.example__item:not(:first-child) {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .example__item:not(:first-child) {
    margin-top: 0;
  }
}

.example__content {
  padding: 20px;
  background-color: #f7f6f4;
}
@media screen and (min-width: 900px) {
  .example__content {
    padding: 40px 108px;
  }
}
@media screen and (min-width: 768px) {
  .example__content {
    display: none;
  }
  .example__content.is-active {
    display: block;
  }
}

.example__content-img-wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .example__content-img-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.example__content-img img {
  width: 100%;
}
.example__content-img:nth-child(1) {
  max-width: 288px;
  margin-right: 7.1611253197%;
}
@media screen and (min-width: 900px) {
  .example__content-img:nth-child(1) {
    max-width: 333px;
  }
}
.example__content-img:nth-child(2) {
  max-width: 295px;
  margin-top: 26px;
}
@media screen and (min-width: 900px) {
  .example__content-img:nth-child(2) {
    margin-top: 0;
    max-width: 387px;
  }
}

.example__content-list {
  margin-top: 18px;
}

.example__content-item {
  background-color: #fff;
  padding: 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .example__content-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.example__content-item:nth-child(1)::before, .example__content-item:nth-child(2)::before {
  position: absolute;
  content: "";
  background: url(../img/dot.webp) no-repeat center center/contain;
  width: 6px;
  height: 32px;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.example__content-item:nth-child(3)::before {
  position: absolute;
  content: "";
  background: url(../img/arrow_dot.webp) no-repeat center center/contain;
  width: 22px;
  height: 36px;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.example__content-item:not(:first-child) {
  margin-top: 40px;
}
.example__content-item:nth-child(1) .example__content-item-title::before {
  background: url(../img/values_icon_support01_1.webp) no-repeat center center/contain;
}
.example__content-item:nth-child(2) .example__content-item-title::before {
  background: url(../img/values_icon_support01_2.webp) no-repeat center center/contain;
}
.example__content-item:nth-child(3) .example__content-item-title::before {
  background: url(../img/values_icon_support01_3.webp) no-repeat center center/contain;
}

.example__content-item-title {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 900;
  color: #fff;
  padding: 12px 12px 12px 50px;
  border-radius: 30px;
  position: relative;
  text-align: center;
  width: 275px;
}
@media screen and (min-width: 900px) {
  .example__content-item-title {
    font-size: 2rem;
    margin-right: 24px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 320px;
            flex: 0 1 320px;
  }
}
.example__content-item-title::before {
  position: absolute;
  content: "";
  width: 52px;
  height: 52px;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.example__content-item-text {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 16px;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .example__content-item-text {
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 400px;
            flex: 0 1 400px;
  }
}

.example__content-foot {
  margin-top: 61px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

/* ======================================================
voice
======================================================= */
.voice {
  margin-top: 50px;
  padding-block: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f6f4), to(rgba(247, 246, 244, 0)));
  background: linear-gradient(180deg, #f7f6f4 0%, rgba(247, 246, 244, 0) 100%);
}
@media screen and (min-width: 768px) {
  .voice {
    margin-top: 100px;
    padding-block: 100px;
  }
}

.voice__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .voice__inner {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .voice__inner {
    padding-inline: 40px;
  }
}

.swiper {
  padding-bottom: 34px;
}

.voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 40px;
}

.voice-item {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  width: 29.8242280702%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 30px;
  height: auto;
}

@media screen and (min-width: 1100px) {
  .voice-item__img {
    max-width: 280px;
    height: 140px;
  }
}

.voice-item__title {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .voice-item__title {
    font-size: 2rem;
  }
}

.voice-item__text {
  margin-top: 8px;
  line-height: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: justify;
}
.voice-item__text span {
  font-weight: 700;
}

.voice-item__foot {
  margin-top: 24px;
}

.voice-item__foot-title {
  font-weight: 500;
  line-height: 2;
}

.voice-item__foot-item {
  font-weight: 900;
  color: #fff;
  padding-block: 11px;
  margin-top: 8px;
  border-radius: 30px;
  line-height: 1.8;
}
.voice-item__foot-item.bg__transparent {
  height: 50.8px;
}

.swiper-scrollbar {
  height: 6px !important;
}
@media screen and (min-width: 1100px) {
  .swiper-scrollbar {
    display: none;
  }
}

/* ======================================================
step
======================================================= */
.step {
  padding-block: 50px;
  background-color: #f7f6f4;
}
@media screen and (min-width: 768px) {
  .step {
    padding-block: 100px;
  }
}

.step__inner {
  max-width: 1220px;
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .step__inner {
    padding-inline: 40px;
  }
}

.step__list {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .step__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .step__list::before {
    position: absolute;
    content: "";
    background: url(../img/step_dot.webp) no-repeat center center/contain;
    width: 100%;
    height: 7px;
    top: 113px;
    left: 0;
  }
}

.step-item {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1100px) {
  .step-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 16.4912280702%;
    gap: 0;
  }
}
.step-item:not(:first-child) {
  margin-top: 36px;
}
@media screen and (min-width: 1100px) {
  .step-item:not(:first-child) {
    margin-top: 0;
  }
}
.step-item:not(:first-child) .step-item__icon::before {
  position: absolute;
  content: "";
  background: url(../img/step_dot_sp.svg) no-repeat center center/contain;
  width: 8px;
  height: 40px;
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1100px) {
  .step-item:not(:first-child) .step-item__icon::before {
    display: none;
  }
}

.step-item__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 92px;
          flex: 0 0 92px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-item__icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}

.step-item__number {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Overpass", sans-serif;
  line-height: 2;
  text-align: center;
  display: block;
}

.step-item__img {
  width: 92px;
  height: 92px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .step-item__img {
    width: 150px;
    height: 150px;
  }
}
.step-item__img img {
  width: 100%;
}

.step-item__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 360px;
          flex: 0 1 360px;
}
@media screen and (min-width: 1100px) {
  .step-item__body {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.step-item__title {
  margin-top: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #e28301;
}
@media screen and (min-width: 1100px) {
  .step-item__title {
    text-align: center;
  }
}

.step-item__text {
  line-height: 2;
}
@media screen and (min-width: 1100px) {
  .step-item__text {
    text-align: center;
  }
}

/* ======================================================
price
======================================================= */
.price {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .price {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.price__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .price__inner {
    padding-inline: 40px;
  }
}

.plan__item-wrap {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
}
@media screen and (min-width: 1100px) {
  .plan__item-wrap {
    margin-top: 102px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.plan-item {
  border: 3px solid #000;
  border-radius: 8px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 362px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .plan-item {
    max-width: 480px;
  }
}
@media screen and (min-width: 1100px) {
  .plan-item {
    width: 48%;
  }
}
.plan-item:nth-child(2) {
  margin-top: 75px;
}
@media screen and (min-width: 1100px) {
  .plan-item:nth-child(2) {
    margin-top: 0;
  }
}

.plan-item__label {
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .plan-item__label {
    top: -62px;
  }
}
.plan-item__label img {
  width: 59px;
  height: 59px;
}
@media screen and (min-width: 768px) {
  .plan-item__label img {
    width: 84px;
    height: 84px;
  }
}

.plan-item__heading {
  background-color: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  padding: 18px 0 3px 0;
}
@media screen and (min-width: 768px) {
  .plan-item__heading {
    font-size: 2.4rem;
    padding: 26px 0 7px 0;
  }
}

.plan-item__body {
  padding: 16px 24px;
}
@media screen and (min-width: 768px) {
  .plan-item__body {
    padding: 22px 35px 30px 35px;
  }
}

.plan-item__body-text {
  background-color: #f7f6f4;
  height: 54px;
  text-align: center;
  border-radius: 8px;
  padding: 10px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan-item__body-text strong {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-item__body-text strong {
    font-size: 2.4rem;
    padding: 17px 8px;
  }
}
.plan-item__body-text:not(:first-child) {
  margin-top: 21px;
}

.plan-campaign {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .plan-campaign {
    margin-top: 54px;
  }
}

.plan-campaign__label {
  text-align: center;
  font-weight: 700;
  color: #105f00;
}
.plan-campaign__label span::before {
  content: "\\ ";
}
.plan-campaign__label span::after {
  content: " /";
}
.plan-campaign__label span strong {
  font-size: 2rem;
}
.plan-campaign__label span strong.font-en {
  font-size: 2.4rem;
  font-weight: 900;
}

.plan-campaign__box {
  background-color: #99b901;
  padding: 20px 11px;
  border-radius: 8px;
}

.plan-campaign__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 7px 11px;
  background-color: #fff;
  border-radius: 43px;
}
@media screen and (min-width: 768px) {
  .plan-campaign__heading {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.plan-campaign__heading img {
  width: 43px;
  height: 43px;
}
@media screen and (min-width: 768px) {
  .plan-campaign__heading img {
    width: 72px;
    height: 72px;
  }
}

.plan-campaign__heading-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #105f00;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .plan-campaign__heading-text {
    font-size: 2rem;
  }
}

.plan-campaign__heading-text-foot {
  font-size: 2.4rem;
  font-weight: 700;
  color: #105f00;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .plan-campaign__heading-text-foot {
    font-size: 3.2rem;
    letter-spacing: 0.05em;
  }
}
.plan-campaign__heading-text-foot::after {
  content: "！";
  -webkit-transform: rotate(24deg) scale(1.2);
          transform: rotate(24deg) scale(1.2);
  display: inline-block;
}

.plan-campaign__text-head {
  color: #fff;
  text-align: center;
  margin-top: 23px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.plan-campaign__text-head strong {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .plan-campaign__text-head strong {
    font-size: 3.2rem;
  }
}
.plan-campaign__text-head strong.font-en {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .plan-campaign__text-head strong.font-en {
    font-size: 4.8rem;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: inline-block;
  }
}

.plan-campaign__text-foot {
  text-align: center;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .plan-campaign__text-foot {
    font-size: 2.8rem;
  }
}

/* ======================================================
faq
======================================================= */
.faq {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-top: 100px;
  }
}

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

.faq__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin-top: 40px;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.faq-item__term-wrap {
  padding-block: 24px;
}
@media screen and (min-width: 768px) {
  .faq-item__term-wrap {
    margin-left: 12%;
    cursor: pointer;
  }
}
.faq-item__term-wrap.is-active .faq-item__term-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-item__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 30px;
}
@media screen and (min-width: 768px) {
  .faq-item__term {
    padding-right: 70px;
  }
}

.faq-item__term-icon {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Overpass", sans-serif;
  font-size: 2rem;
  padding-top: 5px;
  margin-right: 24px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-item__term-text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .faq-item__term-text {
    font-size: 2rem;
  }
}

.faq-item__term-toggle {
  position: absolute;
  background: url(../img/arrow_bottom.webp) no-repeat center center/contain;
  width: 24px;
  height: 12px;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-item__term-toggle {
    right: 32px;
  }
}

.faq-item__description-wrap {
  padding-block: 24px;
  background-color: #f7f6f4;
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-item__description-wrap {
    padding-left: 12%;
  }
}

.faq-item__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-item__description-icon {
  background-color: #e10048;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Overpass", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 5px;
  padding-left: 1px;
  margin-right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-item__description-text {
  line-height: 2;
}

/* ======================================================
initiative
======================================================= */
.initiative {
  padding-block: 50px;
  background-color: #fdd401;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .initiative {
    margin-top: 100px;
  }
}

.initiative__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 20px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .initiative__inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 900px) {
  .initiative__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.initiative__content {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .initiative__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 580px;
            flex: 0 1 580px;
    margin-right: 5.9%;
    margin-top: 0;
  }
}

.initiative__content-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .initiative__content-heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .initiative__content-heading strong {
    font-size: 3.2rem;
  }
}
.initiative__content-heading span {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.initiative__content-heading span img {
  margin-right: 0.2em;
  width: 188px;
}
@media screen and (min-width: 768px) {
  .initiative__content-heading span img {
    width: 266px;
  }
}

.initiative__content-text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 24px;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .initiative__content-text {
    font-size: 2rem;
  }
}

.initiative__img {
  width: 140px;
}
@media screen and (min-width: 900px) {
  .initiative__img {
    width: 361px;
  }
}
.initiative__img img {
  width: 100%;
}

/* ======================================================
contact
======================================================= */
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 100px;
    padding-inline: 40px;
  }
}

.contact__inner {
  max-width: 980px;
  margin: 0 auto;
  background-color: #f7f6f4;
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 50px 100px;
  }
}

.contact__read {
  margin-top: 16px;
  text-align: center;
  line-height: 2;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .contact__read {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}

.contact-form input,
.contact-form textarea {
  background-color: #fff;
}
.contact-form input::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form input:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form input::-ms-input-placeholder, .contact-form textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  border-radius: 8px;
  padding: 16px 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form textarea {
    padding: 12px;
  }
}
.contact-form textarea {
  height: 188px;
  resize: vertical;
}

.contact-form__item {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__term {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    margin-right: 30px;
  }
}

.contact-form__required {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 3px 12px;
  color: #e10048;
  border: 1px solid #e10048;
  border-radius: 8px;
  margin-left: 8px;
}

.contact-form__description {
  width: 100%;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__description {
    margin-top: 0;
  }
}

.contact-form__privacy {
  margin-top: 37px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__privacy label {
    cursor: pointer;
  }
}
.contact-form__privacy label input {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.contact-form__privacy label input:checked + span::after {
  opacity: 1;
}
.contact-form__privacy label span {
  position: relative;
  padding-left: 2em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy label span {
    font-size: 1.6rem;
  }
}
.contact-form__privacy label span a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__privacy label span::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 19px;
  height: 19px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 4px;
}
.contact-form__privacy label span::after {
  position: absolute;
  content: "";
  background: url(../img/check_icon.svg) no-repeat center center/contain;
  top: 50%;
  left: 3px;
  width: 15px;
  height: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.contact-form__button {
  margin-top: 32px;
  margin-inline: auto;
  width: 194px;
  border-radius: 8px;
  overflow: hidden;
  z-index: 0;
  position: relative;
}
.contact-form__button::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(265deg, #99b901 2.64%, #105f00 81.03%);
}
.contact-form__button::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  background: #fdd401;
}
@media screen and (min-width: 768px) {
  .contact-form__button:hover:before {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact-form__button {
    margin-top: 40px;
  }
}
.contact-form__button input {
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  line-height: 2;
  padding: 12px 33px;
  background-color: transparent;
}

/* ======================================================
footer
======================================================= */
.footer {
  background-color: #f7f6f4;
  padding-top: 64px;
  padding-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 100px;
  }
}

.footer__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-inline: 40px;
  }
}

.footer__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .footer__heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-nav__logo {
  margin-right: 40px;
  width: 260px;
}
@media screen and (min-width: 1100px) {
  .footer-nav__logo {
    width: 237px;
  }
}
.footer-nav__logo img {
  width: 100%;
}

.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .footer-nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .footer-nav__list {
    margin-top: 0;
  }
}

.footer-nav__item a {
  line-height: 2;
}
.footer-nav__item a:hover {
  color: #105f00;
}

.footer__copy {
  margin-top: 40px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1100px) {
  .footer__copy {
    position: absolute;
    right: 0;
    margin-top: 0;
  }
}

.footer__foot {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .footer__foot {
    margin-top: 64px;
  }
}

.footer__foot-notes {
  font-size: 1.2rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .footer__foot-notes {
    font-size: 1.4rem;
  }
}