@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: #F3F8ED;
  color: #000000;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

:focus-visible {
  outline: 3px solid #8fd068;
  outline-offset: 3px;
}

.container {
  width: 95vw;
  max-width: 1400px;
  margin: 0 auto;
}

.popup_message {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
  z-index: 200;
  width: 60vw;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.popup_message.alert p {
  background: #dc3545;
}
.popup_message.info p {
  background: #17a2b8;
}
.popup_message p {
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  width: 60vw;
  padding: 12px 20px 15px;
  line-height: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #1f2520;
  line-height: 1.3;
  margin: 0;
}

p {
  margin: 0;
  color: #000000;
}

.section-title {
  position: relative;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #1f2520;
  margin-bottom: 1.2rem;
}
.section-title.doubleline {
  line-height: 3.5rem;
}
.section-title span.maincolor {
  color: #6fb83e;
}
.section-title span.underline {
  border-bottom: 3px solid #000;
  padding-bottom: 4px;
  line-height: 4rem;
}
.section-title img.float-right {
  display: inline-block;
  width: 20px;
  margin-bottom: 25px;
}
.section-title img.float-right.large {
  width: 30px;
  margin-bottom: 15px;
}
.section-title img.float-right.middle {
  margin-bottom: 0;
  margin-left: 10px;
}
.section-title img.float-left {
  display: inline-block;
  width: 20px;
  margin-bottom: 25px;
}
.section-title img.float-left.middle {
  margin-bottom: 0;
  margin-right: 10px;
}
.section-title:has(.float-right)::before {
  display: inline-block;
  width: 20px;
  height: 20px;
  content: " ";
}
.section-title:has(.float-right):has(.float-left)::before {
  display: none;
}
@media (max-width: 560px) {
  .section-title {
    font-size: 1.3rem;
  }
}

.section-lead {
  text-align: center;
  font-size: 1rem;
  max-width: 660px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.btn,
.button {
  display: inline-block !important;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  color: #1f2520;
  box-shadow: none;
  text-decoration: none;
}

.btn i,
.button i {
  font-size: 1.5rem;
}

.btn--primary,
.button--primary,
.btn--contact {
  background: #6fb83e;
  color: #fff;
  border: 2px solid #fff;
}
.btn--primary:hover,
.button--primary:hover,
.btn--contact:hover {
  background: #fff;
  border: 2px solid #6fb83e;
  color: #6fb83e;
}

.btn--contact {
  padding: 0.75rem 2rem;
  border-radius: 24px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.btn--primary {
  min-width: 300px;
  font-size: 1.25rem;
}

.btn--icon,
.button--icon {
  gap: 0.75rem;
}

.button__icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pain {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #fff;
}

.card-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .card-grid--three {
    grid-template-columns: repeat(1, 1fr);
  }
}

.label-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .label-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.label-grid .label {
  display: grid;
  grid-template-columns: 120px 1fr; /* 左: 画像幅 / 右: 可変 */
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: start; /* 見出しを上に揃える */
  padding: 1rem; /* 任意：カード風 */
  /* border: 1px solid #eee; border-radius: .5rem; */
}
.label-grid .label img {
  grid-column: 1; /* 左列 */
  grid-row: 1/span 2; /* 1～2行を縦にまたぐ＝縦結合 */
  width: 120px; /* サムネ固定幅（お好みで） */
  height: 120px;
  object-fit: contain; /* 収まり優先。埋めたいなら cover */
}
.label-grid .label h3 {
  grid-column: 2; /* 右列・上段 */
  grid-row: 1;
  margin: 0;
}
.label-grid .label p {
  grid-column: 2; /* 右列・下段 */
  grid-row: 2;
  margin: 0;
  line-height: 1.6;
}

.card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  gap: 1rem;
}
.card h3 {
  margin: 0;
  font-size: 1.15rem;
}
.card p {
  margin: 0;
}
.card img {
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
}

.card--pain img {
  max-height: 200px;
  object-fit: contain;
  padding: 1rem;
}

.merits {
  background: #F3F8ED;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.merits__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.merits__cta a {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.merits__cta a i {
  font-size: 1.5rem;
}

.card--merit {
  position: relative;
}
.card--merit h3 {
  display: flex;
  align-items: center;
}
.card--merit h3 span.card-number {
  font-size: 2rem;
  margin-right: 10px;
  color: #6fb83e;
}
.services {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #fff;
}
.card--service img {
  max-height: 80px;
  object-fit: contain;
  object-position: right center;
}

.products {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.products__note {
  text-align: right;
  margin-top: 1.5rem;
  color: #5f6b59;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .products__note {
    text-align: left;
  }
}

.flow {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #ffffff;
}
.flow .container {
  max-width: 800px;
}
.flow .container .flow__steps {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
}
@media (max-width: 768px) {
  .flow .container .flow__steps {
    grid-template-columns: repeat(1, 1fr);
  }
}
.flow .container .flow__steps li {
  display: grid;
  grid-template-columns: 120px 1fr; /* 左: 画像幅 / 右: 可変 */
  column-gap: 1rem;
  row-gap: 0.25rem;
  grid-template-rows: auto auto; /* タイトル行 + 説明行 */
  padding: 1rem; /* 任意：カード風 */
  align-items: stretch; /* 各セルを自由に動かすためにstretch解除 */
}
.flow .container .flow__steps li img {
  grid-column: 1; /* 左列 */
  grid-row: 1/span 2; /* 1～2行を縦にまたぐ＝縦結合 */
  width: 120px; /* サムネ固定幅（お好みで） */
  height: 120px;
  object-fit: contain; /* 収まり優先。埋めたいなら cover */
}
.flow .container .flow__steps li h3 {
  grid-column: 2; /* 右列・上段 */
  margin: 0;
  align-self: end; /* ← 上段セルを下寄せ（end） */
}
.flow .container .flow__steps li p {
  align-items: start;
  grid-column: 2; /* 右列・下段 */
  grid-row: 2;
  margin: 0;
  line-height: 1.6;
  align-self: start; /* ← 下段セルを上寄せ（start） */
}
.flow .container .flow__steps li.arrow {
  display: block;
  text-align: center;
}
.flow .container .flow__steps li.arrow i {
  font-size: 2rem;
  color: #6fb83e;
}
.flow .container .flow__image {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(65, 103, 47, 0.12);
}
.flow .container .flow__cta {
  background: linear-gradient(120deg, #6fb83e 0%, #5a9d33 100%);
  color: #fff;
  border-radius: 28px;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  display: grid;
  gap: 1.4rem;
  justify-items: center;
  text-align: center;
}
.flow .container .flow__cta p {
  margin: 0;
  font-size: 1.05rem;
  max-width: 640px;
}

.cta-banner {
  background: #F3F8ED;
  padding: clamp(2.8rem, 5vw, 5rem) 0;
}
.cta-banner .container {
  max-width: 800px;
}
.cta-banner .cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta-banner .cta-banner__text h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  font-weight: 900;
}
.cta-banner .cta-banner__item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cta-banner .cta-banner__item {
    max-width: 80%;
    flex-direction: column;
  }
}
.cta-banner .cta-banner__item p.text {
  flex: 1;
}
.cta-banner .cta-banner__item p.contact_button {
  background: none;
}
.cta-banner .cta-banner__item p.contact_button a {
  font-size: 1.2rem;
}
.cta-banner .cta-banner__item p.contact_button a i {
  font-size: 1.5rem;
}

.faq {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #ffffff;
}
.faq__items {
  display: grid;
  gap: 1rem;
}
.faq details {
  margin: 0 10px;
}
.faq details summary,
.faq details p {
  border-radius: 35px;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  font-weight: 700;
  line-height: 1.5rem;
}
.faq details summary::before,
.faq details p::before {
  position: absolute;
  left: 20px;
  color: #6fb83e;
  font-weight: 900;
  font-size: 1.5rem;
}
.faq details summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  border: 2px solid rgba(214, 231, 199, 0.8);
}
.faq details summary::before {
  content: "Q";
}
.faq details p {
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq details p::before {
  content: "A";
}

.statement {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255) 90%), url("../images/statement-bg.jpg") center/cover no-repeat;
  padding: clamp(2rem, 6vw, 4.5rem) 0;
  position: relative;
  color: #214321;
}
.statement__inner {
  position: relative;
  z-index: 1;
}
.statement__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
}
.statement__content h2 {
  color: #6fb83e;
  margin: 0 0 500px;
  font-size: clamp(0.9rem, 3vw, 2rem);
  background: url("../images/hero-badge.png") center/contain no-repeat;
  height: 150px;
  line-height: 100px;
}
@media (max-width: 1024px) {
  .statement__content h2 {
    margin-bottom: 300px;
    line-height: 125px;
  }
}
.statement__content p {
  margin: 0;
  text-align: left;
  font-size: clamp(0.8rem, 3vw, 1rem);
}

.contact {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #ffffff;
}
.contact__intro {
  display: grid;
  gap: 1rem;
}
.contact__intro p {
  margin: 0;
  text-align: center;
}

.contact-form {
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: grid;
  gap: 1rem;
  max-width: 80vw;
  margin: 0 auto;
}
.contact-form .form-field {
  display: grid;
  gap: 0.4rem;
}
.contact-form .form-field label {
  font-weight: 600;
}
.contact-form .form-field input,
.contact-form .form-field textarea,
.contact-form .form-field select {
  border: 1px solid rgba(214, 231, 199, 0.9);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  max-width: 80vw;
}
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus,
.contact-form .form-field select:focus {
  border-color: #6fb83e;
  box-shadow: 0 0 0 4px rgba(111, 184, 62, 0.2);
  outline: none;
}
.contact-form .form-field--checkbox {
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
}
.contact-form .form-field--checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #6fb83e;
}
.contact-form .form-field--radio {
  align-items: center;
  gap: 0.6rem;
}
.contact-form .form-field--radio input {
  width: 18px;
  height: 18px;
  accent-color: #6fb83e;
}
.contact-form .button-field {
  text-align: center;
}
.contact-form .required {
  font-size: 0.75rem;
  color: #e53935;
  font-weight: 700;
  margin-left: 0.3rem;
}
.contact-form .privacypolicy_wrap {
  border: 1px solid #6fb83e;
  height: 200px;
  width: 100%;
  padding: 10px;
  overflow: scroll;
  max-width: 80vw;
  margin: 0 auto;
}
.contact-form .privacypolicy_wrap p {
  font-size: 10px;
}

.site-footer {
  background: #F3F8ED;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}
.site-footer__inner {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}
.site-footer__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
}
.site-footer__title span.underline {
  border-bottom: 3px solid #000;
}
.site-footer__logo {
  width: clamp(140px, 20vw, 200px);
  filter: drop-shadow(0 12px 20px rgba(75, 112, 53, 0.16));
}

.company-info {
  margin: 0;
  display: grid;
  gap: 0.9rem;
  width: 100%;
  max-width: 1080px;
}
.company-info div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0.6rem;
  padding: 1rem 1.3rem;
  border-radius: 18px;
}
@media (max-width: 560px) {
  .company-info div {
    grid-template-columns: 1fr;
  }
}
.company-info dt {
  font-weight: 700;
}
.company-info dd {
  margin: 0;
}

.copyright {
  padding: 80px 0 2rem;
}
.copyright p {
  text-align: center;
  font-size: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 184, 62, 0.16);
  box-shadow: 0 8px 24px rgba(36, 58, 28, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  display: block;
  width: auto;
  max-height: 35px;
}
.site-header a.btn--contact {
  padding: 0.25rem 1.5rem;
}
@media (max-width: 768px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header__logo img {
    height: 25px;
  }
  .site-header a.btn--contact {
    display: none !important;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #1f2520;
  padding: 0 2.5vw;
}
.hero__background {
  position: absolute;
  inset: 0;
  background: url("../images/top-bg.png") right/cover fixed no-repeat;
  z-index: -2;
}
@media (max-width: 768px) {
  .hero__background {
    background-attachment: scroll;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__inner {
  position: relative;
  min-height: clamp(26rem, 60vw, 37.5rem);
  padding: clamp(4rem, 8vw, 6rem) 0;
  width: auto;
  max-width: 650px;
  margin: 0;
}
.hero__content {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 5px;
  padding: 15px 25px;
  box-shadow: 0 32px 70px rgba(22, 48, 16, 0.25);
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 15px 15px;
  }
}
.hero__eyebrow p {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-bottom: 2px solid #000;
}
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero__headline-main {
  color: #6fb83e;
  font-size: clamp(1.2rem, 4.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
}
.hero__lead {
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero__btn {
  text-align: center;
}
.hero__btn .hero__cta {
  line-height: 1em;
  padding: 1rem 3rem;
}
.hero__btn .hero__cta i,
.hero__btn .hero__cta span {
  font-size: 1.5rem;
}
.hero__visual {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 480px;
}
.hero__visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 24px 50px rgba(18, 38, 12, 0.28));
}
@media (max-width: 1024px) {
  .hero__inner {
    align-items: center;
  }
  .hero__content {
    align-self: stretch;
  }
  .hero__visual {
    justify-content: center;
    max-width: 360px;
  }
  .hero__visual img {
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    padding: clamp(3rem, 8vw, 4rem) 0 clamp(2rem, 6vw, 3rem);
    gap: clamp(2rem, 7vw, 3rem);
  }
  .hero__headline-main, .hero__headline-accent {
    text-align: left;
  }
  .hero__lead {
    font-size: 1rem;
  }
  .hero__visual {
    order: 2;
  }
}

.feature-list {
  list-style: none;
  margin: 3rem 0 2rem;
  padding: 3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(0.75rem, 2.4vw, 1.2rem) 0;
  background: #fff;
  border-radius: 10px;
}
.feature-list__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.4rem;
}
.feature-list__icon {
  border-radius: 50%;
  background: #e8f6e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6fb83e;
  font-size: 1.2rem;
}
.feature-list__text {
  font-weight: 600;
  color: #5a9d33;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .feature-list {
    gap: 0;
  }
  .feature-list__item {
    padding: 0.5rem 0.5rem;
    justify-content: flex-start;
  }
}/*# sourceMappingURL=main.css.map */