@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.6071428571;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 800px) {
  html {
    font-size: 2.1052631579vw;
  }
}

* {
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 800px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

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

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

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* a 要素のリセット */
a {
  text-decoration: none;
  color: inherit;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default 
article > * + * {
  margin-top: 1em;
}
*/
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

div#contents {
  width: 100% !important;
  margin: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
}

div#main {
  width: 100% !important;
  float: none;
  max-width: 100%;
}

#header,
#footer,
.main_img {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.header {
  background: #FFFFFF;
  padding: 20px 0;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  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 (max-width: 768px) {
  .header__container {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.header__logo img {
  height: 39px;
  width: 223px;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .header__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.header__btn--demo {
  background: #FF9800;
  color: #FFFFFF;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.header__btn--demo:hover {
  background: rgb(204, 121.6, 0);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
}

.header__btn--contact {
  background: #FFFFFF;
  color: #37474F;
  border: 2px solid #8BC34A;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.header__btn--contact:hover {
  background: rgba(139, 195, 74, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.15);
}

.header__btn-icon {
  width: 71px;
  height: 71px;
  position: absolute;
  left: -17px;
  top: -11px;
  -webkit-filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
}

.header__btn-icon-svg {
  width: 31px;
  height: 26px;
}

.section {
  padding: 79px 0;
}

.section--concerns {
  background: #FFFFFF;
}

.section--solution {
  background: rgba(255, 152, 0, 0.1);
  position: relative;
  padding-top: 0;
}

.section--about {
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#FFFFFF));
  background: linear-gradient(to bottom, #F5F5F5, #FFFFFF);
  padding: 140px 0;
}

.section--flow {
  background: #F5F5F5;
  padding: 130px 0 80px;
}

.section--faq {
  background: #FFFFFF;
  padding: 172px 0 100px;
}

.section__wave {
  margin-bottom: 41px;
}

.section__wave img {
  width: 100%;
  height: auto;
}

.section__heading {
  text-align: center;
  margin-bottom: 40px;
}

.section__heading-icon {
  margin: 0 auto 20px;
  width: 88px;
  height: 88px;
}

.section__heading-icon img {
  width: 100%;
  height: 100%;
}

.section__heading-inline {
  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;
  gap: 20px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section__title {
  font-size: 36px;
  font-weight: 900;
  color: #37474F;
  line-height: 1.7;
  text-align: center;
}

.section__title--center {
  text-align: center;
}

.section__title-inline {
  font-size: 36px;
  font-weight: 900;
  color: #37474F;
  line-height: 1.7;
  margin: 0;
}

.section__logo {
  height: 43px;
  width: 249px;
}

.highlight {
  color: #FF9800;
}

.underline {
  text-decoration: underline;
  text-decoration-color: rgba(255, 204, 0, 0.5);
  text-decoration-thickness: 40%;
  text-underline-offset: 4px;
}

.concerns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
}
@media (max-width: 968px) {
  .concerns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.concern-card {
  background: #F5F5F5;
  border-top: 5px solid #607D8B;
  border-radius: 15px;
  padding: 34px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  min-height: 498px;
}

.concern-card__header {
  text-align: center;
  margin-bottom: 50px;
}

.concern-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #37474F;
  margin: 0;
}

.concern-card__subtitle {
  font-size: 28px;
  display: block;
  margin-top: 4px;
}

.concern-card__icon {
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
  height: 66px;
}

.concern-card__icon-bg {
  width: 72px;
  height: 66px;
}

.concern-card__icon-main {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
}

.concern-card__quote {
  font-size: 22px;
  font-weight: 700;
  color: #7CB342;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 24px;
}

.concern-card__description {
  font-size: 20px;
  font-weight: 700;
  color: #37474F;
  text-align: center;
  line-height: 1.87;
}

.solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
}
@media (max-width: 968px) {
  .solutions {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.solution-card {
  background: #FFFFFF;
  border-top: 5px solid #8BC34A;
  border-radius: 15px;
  padding: 43px 33px;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.solution-card--primary .solution-card__title {
  color: #FB8C00;
}

.solution-card__title {
  font-size: 28px;
  font-weight: 700;
  color: #444;
  line-height: 1.34;
  margin-bottom: 24px;
}

.solution-card__title .underline {
  color: #FB8C00;
}

.solution-card__icon {
  margin: 24px auto;
  width: 120px;
  height: 117px;
  background: #8DC556;
  border-radius: 100px;
  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-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.25);
}

.solution-card__icon--large {
  padding: 30px;
}

.solution-card__icon img {
  max-width: 100%;
  max-height: 100%;
}

.solution-card__description {
  font-size: 18px;
  font-weight: 700;
  color: #37474F;
  line-height: 2.08;
  margin-top: 40px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 968px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about__content {
  max-width: 522px;
}

.about__title {
  font-size: 36px;
  font-weight: 900;
  color: #37474F;
  line-height: 1.7;
  margin-bottom: 61px;
  position: relative;
}

.about__logo {
  height: 43px;
  width: 249px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}

.about__text {
  font-size: 20px;
  color: #37474F;
  line-height: 1.87;
}

.about__text p {
  margin-bottom: 16px;
}

.about__text strong {
  font-weight: 900;
}

.about__image img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 40px;
  position: relative;
}
@media (max-width: 968px) {
  .flow {
    grid-template-columns: 1fr;
  }
}

.flow__line {
  position: absolute;
  top: 90px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#8BC34A), to(#FF9800));
  background: linear-gradient(to right, #8BC34A, #FF9800);
}
@media (max-width: 968px) {
  .flow__line {
    display: none;
  }
}

.flow-step {
  text-align: center;
  position: relative;
}

.flow-step__number {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 5px solid #8BC34A;
  background: #FFFFFF;
  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;
  margin: 0 auto 24px;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(139, 195, 74, 0.3);
          box-shadow: 0px 5px 20px 0px rgba(139, 195, 74, 0.3);
  position: relative;
  z-index: 2;
}

.flow-step__label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #8BC34A;
  font-weight: 700;
  line-height: 1.7;
}

.flow-step__num {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  color: #8BC34A;
  font-weight: 800;
  line-height: 1.7;
}

.flow-step__content {
  background: #FFFFFF;
  padding: 24px 16px;
  border-radius: 15px;
  min-height: 180px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flow-step__title {
  font-size: 24px;
  font-weight: 700;
  color: #F57C00;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.flow-step__description {
  font-size: 16px;
  font-weight: 350;
  color: #37474F;
  line-height: 1.49;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #FAFAFA;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item__question {
  padding: 24px 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-item__question:hover {
  background: rgba(255, 152, 0, 0.05);
}

.faq-item__q {
  font-size: 24px;
  font-weight: 700;
  color: #F57C00;
  letter-spacing: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-item__text {
  font-size: 17px;
  font-weight: 700;
  color: #37474F;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-item__toggle {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  width: 25px;
  height: 25px;
  background: #FF9800;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}

.footer {
  background: #689F38;
  padding: 40px 0 20px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 120px;
  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: 12px;
}
@media (max-width: 768px) {
  .footer__container {
    padding: 0 20px;
  }
}

.footer__logo img {
  height: 94px;
  width: 470px;
  -webkit-filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 100%;
    height: auto;
  }
}

.footer__info {
  text-align: center;
}

.footer__address {
  font-size: 16px;
  font-weight: 350;
  color: #FFFFFF;
  opacity: 0.8;
  line-height: 1.49;
  margin-bottom: 8px;
}

.footer__copyright {
  font-size: 13px;
  font-weight: 350;
  color: #FFFFFF;
  opacity: 0.6;
  line-height: 1.7;
  margin: 0;
}