@charset "UTF-8";
/* Webフォント（商用フォント）: DIN / Sofia Pro
   フォントファイルは assets/fonts/ に配置してください（.woff2推奨）
   例：assets/fonts/DIN-Regular.woff2, DIN-Bold.woff2, SofiaPro-Regular.woff2, SofiaPro-Bold.woff2, SofiaPro-Black.woff2
*/
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../fonts/DIN-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("../fonts/SofiaPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("../fonts/SofiaPro-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("../fonts/SofiaPro-Black.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* UA配色スキーム宣言（リセット側で宣言して良い） */
:root {
  color-scheme: light;
}

/* 基本リセット */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* HTML設定（UA差抑制のみ。フォントサイズはBaseへ） */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-wrap: break-word;
  overscroll-behavior: none;
  scrollbar-gutter: stable both-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* リストはデフォルトを保持。必要時はユーティリティで無効化 */
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* メディア要素リセット */
img, picture, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  vertical-align: middle;
}

/* フォーム要素リセット */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

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

input:focus-visible,
button:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid Highlight;
  outline-offset: 2px;
}

/* aタグのリセット */
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a:focus-visible {
  outline: 2px solid Highlight;
  outline-offset: 2px;
}

a:hover {
  opacity: 0.85;
}

/* blockquote, qリセット */
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
}

/* テーブルは純リセットでは触らない（設計はBaseへ） */
/* Typography/装飾はBaseへ移動 */
/* 画像の個別指定は上部メディアルールで包含 */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* Container Queriesテストは削除（実験コードはComponent/Baseへ） */
/* ダークモードの本文配色はテーマ/ベース層へ */
/* アニメーション無効化 (ユーザー設定対応) */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Google FontsでOswaldを読み込む想定。ローカル@font-faceは不要に戻す */
/* Base Typography */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Sofia Sans", "YakuHanJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  color: #323232;
}
body p {
  font-feature-settings: "palt";
  font-weight: 500;
}

.font-noto {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

.font-oswald {
  font-family: "Oswald", Arial, Helvetica, sans-serif;
}

.font-sofia {
  font-family: "Sofia Pro", "Sofia Sans", Arial, Helvetica, sans-serif;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

@media (min-width: 600px) {
  .sp-only {
    display: none !important;
  }
}

.pc-only {
  display: none !important;
}
@media (min-width: 600px) {
  .pc-only {
    display: block !important;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-main {
  color: #48B034;
}

.text-big {
  font-size: 1.5em;
}

/* 吹き出しスタイル - モバイルファースト */
.speech-bubble {
  position: relative;
  display: block;
  background: #48B034;
  color: #fff;
  font-weight: 700;
  padding: 1.2rem 2rem;
  border-radius: 3rem;
  margin: 0 auto 2rem auto;
  text-align: center;
  min-width: 314px;
  font-size: 2.1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #48B034;
}
@media (min-width: 600px) {
  .speech-bubble {
    margin: 0 auto 3rem auto;
    font-size: 2.5rem;
    min-width: 470px;
  }
}

.cta-area {
  text-align: center;
  margin-top: 50px;
}

.btn {
  padding: 16px 60px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 600px) {
  .btn {
    font-size: 2rem;
  }
}

.cta-btn {
  background: linear-gradient(180deg, #47B038 0%, #3AAF5A 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 8px 0px #066A33;
  transition: all 0.3s ease;
  padding: 16px 5px 16px 5px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: 100%;
  max-width: 520px;
}
@media (min-width: 600px) {
  .cta-btn {
    font-size: 2.4rem;
  }
}
.cta-btn:hover {
  transform: translateY(-2px);
}
.cta-btn__arrow {
  display: none;
  position: absolute;
  right: 16px;
  top: 52%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .cta-btn__arrow {
    display: flex;
  }
}
.cta-btn__arrow svg {
  width: 16px;
  height: 16px;
  color: #009944;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  font-family: "Noto Sans JP", "Sofia Sans", "YakuHanJP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif, "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
  color: white;
  padding: 8px 20px;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #45A049 0%, #4CAF50 100%);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--small {
  padding: 10px 24px;
}
.btn--large {
  padding: 10px 40px;
}
.btn--secondary {
  background: white;
  color: #4CAF50;
  border: 2px solid #4CAF50;
  padding: 12px 30px;
}
.btn--secondary:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: #333;
  border: 2px solid #dee2e6;
  padding: 12px 30px;
}
.btn--outline:hover {
  border-color: #4CAF50;
  color: #4CAF50;
}
.btn:disabled, .btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--full {
  width: 100%;
}
@media (min-width: 600px) {
  .btn--primary {
    padding: 10px 24px;
  }
}
@media (min-width: 992px) {
  .btn--primary {
    padding: 6px 45px;
  }
  .btn--small {
    padding: 8px 28px;
  }
  .btn--large {
    padding: 16px 44px;
  }
}

.header {
  padding: 0 15px;
  height: 60px;
  width: 100%;
  overflow-x: hidden;
}
@media (min-width: 600px) {
  .header {
    padding: 0 40px;
    height: 90px;
  }
}
.header a {
  text-decoration: none;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 100vw;
}
.header__logo {
  width: clamp(120px, 20vw, 220px);
  height: auto;
  flex-shrink: 1;
  min-width: 120px;
}
.header__logo-img {
  width: 100%;
  height: auto;
}
.header__right {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  gap: 10px;
}
@media (min-width: 600px) {
  .header__right {
    gap: 20px;
    flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .header__right {
    gap: 40px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  gap: 10px;
  list-style: none;
}
@media (min-width: 600px) {
  .header__nav-list {
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .header__nav-list {
    gap: 40px;
  }
}
.header__nav-link {
  position: relative;
  font-size: 1.3rem;
  white-space: nowrap;
  font-weight: 500;
}
@media (min-width: 600px) {
  .header__nav-link {
    font-size: 1.6rem;
  }
}
.header__nav-link::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 8px;
  background-image: url("../../images/arrow-under.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header__cta {
  display: block;
}

.footer {
  background: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%);
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px 0;
  text-align: center;
  background-color: #fff;
}
@media (min-width: 600px) {
  .footer__info {
    padding: 20px 0 40px 0;
  }
}
.footer__info .name {
  font-size: 1.9rem;
  color: #333;
  margin: 0;
  font-weight: 700;
}
.footer__info .name span {
  line-height: 1;
  display: block;
  font-size: 1.6rem;
}
.footer .copyright {
  display: block;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}
.footer .copyright p {
  margin: 0;
}

.cta {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 15px 15px;
  position: relative;
}
@media (min-width: 600px) {
  .cta {
    padding: 30px 0 60px;
  }
}
.cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 82px;
  height: auto;
  background-image: url("../../images/char-24.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  aspect-ratio: 1;
}
@media (min-width: 600px) {
  .cta::before {
    width: 234px;
  }
}
.cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 82px;
  height: auto;
  background-image: url("../../images/char-26.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  aspect-ratio: 1;
}
@media (min-width: 600px) {
  .cta::after {
    width: 234px;
  }
}
.cta h2 {
  font-size: clamp(3.7rem, 5vw, 4.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 120%;
}
.cta h2 span {
  font-size: 0.85em;
}
.cta p {
  font-size: 1.6rem;
  color: white;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (min-width: 600px) {
  .cta p {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}

.tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: white;
  color: #3BAF56;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 315px;
}
@media (min-width: 600px) {
  .tel-btn {
    padding: 8px 26px;
    gap: 26px;
    max-width: 480px;
  }
}
.tel-btn::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url("../../images/icon-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .tel-btn::before {
    width: 56px;
    height: 56px;
  }
}
.tel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.tel-btn__text {
  white-space: nowrap;
}

.hero {
  padding: 20px 0 40px;
  min-block-size: 400px;
  position: relative;
  background: url("../../images/bg-mv.png") top center/cover no-repeat scroll;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.hero > * {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero {
    padding-block: 80px;
    min-block-size: 500px;
  }
}
.hero__container {
  max-inline-size: 1440px;
  position: relative;
  margin-inline: auto;
  padding-inline: 16px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hero__container {
    flex-direction: row;
    gap: 20px;
  }
  .hero__container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100px;
    background: url("../../images/icon-mvlt.png") no-repeat center/contain;
    pointer-events: none;
    z-index: -999;
  }
  .hero__container::after {
    content: "";
    position: absolute;
    left: -20px;
    bottom: -70px;
    width: 220px;
    height: 160px;
    z-index: 0;
    background: url("../../images/icon-mvlb.png") no-repeat center/contain;
    pointer-events: none;
    z-index: -999;
  }
}
.hero__content {
  inline-size: 100%;
}
@media (min-width: 992px) {
  .hero__content {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
.hero__content-txt {
  order: 2;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .hero__content-txt {
    order: 1;
    flex: 0 0 50%;
    min-width: 0;
    max-inline-size: 620px;
    margin-inline: auto;
    align-items: center;
  }
}
.hero__content-pic {
  order: 1;
}
.hero__content-pic figure {
  margin: 0;
}
.hero__content-pic figure img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .hero__content-pic figure img {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .hero__content-pic {
    order: 2;
    flex: 0 0 50%;
    min-width: 0;
  }
}
.hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .hero__cards {
    margin: 0;
  }
}
.hero__cards .hero__card--cta {
  grid-column: 1/-1;
}
@media (min-width: 600px) {
  .hero__cards {
    gap: 10px;
  }
  .hero__cards .hero__card--stats {
    grid-column: 1;
    grid-row: 1;
  }
  .hero__cards .hero__card--image {
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .hero__cards .hero__card--image img {
    padding-top: 10px;
  }
  .hero__cards .hero__card--cta {
    grid-column: 1;
    grid-row: 2;
  }
}
.hero .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .card img {
  display: block;
  max-width: 100%;
  height: auto;
}
.hero .card .cta-btn {
  border-radius: 60px;
  box-shadow: none;
  width: 100%;
  max-width: 284px;
  font-size: 1.9rem;
}
.hero .stats {
  text-align: center;
  width: 100%;
  min-width: 140px;
  max-width: 220px;
  padding: 8px 8px 0;
  display: inline-flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .hero .stats {
    width: 220px;
  }
}
.hero .stats__label {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #F0A520;
  letter-spacing: 0;
}
.hero .stats__count {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
  font-weight: 700;
  color: #F0A520;
  letter-spacing: -0.05em;
  line-height: 0.8;
}
.hero .stats__count .stats__num {
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 3.8rem;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 600px) {
  .hero .stats__count .stats__num {
    font-size: 5.8rem;
  }
}
.hero .stats__count .stats__unit {
  font-size: 2.6rem;
}
.hero .stats__date {
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 0 0 10px;
}
@media (min-width: 600px) {
  .hero .stats__date {
    margin-top: 5px;
  }
}
.hero .wing-img {
  width: 30px;
}
.hero .wing-img img {
  height: 90px;
}
.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #333;
  margin: 0 auto;
  position: relative;
  text-align: center;
  display: inline-block;
  line-height: 1.3;
}
.hero__title strong {
  font-size: 1.2em;
  font-weight: 700;
}
.hero__title::before {
  content: "";
  position: absolute;
  inset-block-start: 0px;
  inset-inline-start: 0;
  inline-size: 40px;
  block-size: 30px;
  background: url("../../images/icon-markup.svg") no-repeat center/contain;
  pointer-events: none;
}
.hero__title::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0;
  inline-size: 40px;
  block-size: 30px;
  background: url("../../images/icon-markdown.svg") no-repeat center/contain;
  pointer-events: none;
}
@media (min-width: 992px) {
  .hero__title::before {
    inset-block-start: 15px;
    inset-inline-start: 0;
  }
  .hero__title::after {
    inset-block-start: 15px;
    inset-inline-end: 0;
  }
}
.hero__brand {
  margin: 20px auto 0;
  display: inline-block;
  position: relative;
  max-width: 220px;
}
@media (min-width: 375px) {
  .hero__brand {
    max-width: 290px;
    padding-left: 10px;
  }
}
@media (min-width: 600px) {
  .hero__brand {
    width: 100%;
    max-width: 474px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .hero__brand {
    max-width: 374px;
  }
}
@media (min-width: 1200px) {
  .hero__brand {
    max-width: 474px;
  }
}
.hero__brand-img {
  position: relative;
  display: inline-block;
}
.hero__brand-img::before {
  content: "";
  position: absolute;
  inset-inline-start: -45px;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inline-size: 60px;
  block-size: 48px;
  background: url("../../images/char-27.png") no-repeat center/contain;
  pointer-events: none;
}
.hero__brand-img img {
  margin-left: 20px;
  display: block;
}
@media (min-width: 600px) {
  .hero__brand-img::before {
    inline-size: 100px;
    inset-inline-start: -95px;
    block-size: 80px;
  }
}
.hero__text {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.6;
  font-weight: 700;
  margin: 10px 0 0 0;
  letter-spacing: 0.05em;
}
@media (min-width: 992px) {
  .hero__text {
    text-align: left;
  }
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 600px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #48B034;
  margin: 0 auto;
  border-radius: 2px;
}
@media (min-width: 600px) {
  .section-title {
    margin-bottom: 60px;
  }
}
.section-title h2 {
  order: 0;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
  position: relative;
  line-height: 140%;
}
.section-title h2 strong {
  font-size: 1.2em;
  color: #48B034;
  font-weight: 700;
}
@media (min-width: 600px) {
  .section-title h2 {
    font-size: 4.8rem;
    margin-bottom: 14px;
  }
}
.section-title h2 .cr {
  color: #48B034;
}
.section-title p:last-child {
  margin-bottom: 40px;
}
.section-title .fukidashi {
  order: -1;
  position: relative;
  display: block;
  background: #48B034;
  color: #fff;
  font-weight: 600;
  padding: 1.2rem 2rem;
  border-radius: 7rem;
  margin: 0 auto 2.4rem;
  text-align: center;
  line-height: 1.4;
  font-size: clamp(2.1rem, 2vw, 2.6rem);
  width: -moz-fit-content;
  width: fit-content;
}
.section-title .fukidashi::after {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid rgba(0, 0, 0, 0);
  border-right: 16px solid rgba(0, 0, 0, 0);
  border-top: 12px solid #48B034;
}
@media (min-width: 600px) {
  .section-title .fukidashi::after {
    border-top: 12px solid #48B034;
  }
}
@media (min-width: 992px) {
  .section-title .fukidashi {
    padding: 1.2rem 2.5rem;
    margin: 0 auto 3rem auto;
  }
}

.bule,
.green {
  position: relative;
}
.bule::before,
.green::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #999;
}

.bule::before {
  background: #2E6FA4;
}

.green::before {
  background: #48B034;
}

p.section-subtitle {
  margin: 6px 0 0;
  font-size: 1.7rem;
}

.trouble {
  background-color: #F8F8F8;
}
.trouble .section-title h2 strong + strong {
  color: #323232;
}
.trouble__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .trouble__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.trouble__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #E4E4CD;
  color: #37370F;
  border-radius: 16px;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .trouble__item {
    flex-direction: row;
    align-items: center;
    padding: 40px 40px 30px 40px;
    max-width: 588px;
  }
}
.trouble__item::after {
  content: "";
  position: absolute;
  top: -23px;
  right: 28px;
  width: 56px;
  height: 54px;
  background-image: url("../../images/icon-trouble.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  pointer-events: none;
}
.trouble__item figure {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  flex: 0 0 auto;
}
@media (min-width: 600px) {
  .trouble__item figure {
    width: 193px;
    height: 193px;
  }
}
.trouble__item figure img {
  width: 100%;
  height: auto;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trouble__item .text,
.trouble__item .trouble__text {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
}
.trouble__item .text p,
.trouble__item .trouble__text p {
  margin: 0 0 20px;
  font-weight: 600;
}
.trouble__item .text p:last-child,
.trouble__item .trouble__text p:last-child {
  margin-bottom: 0;
}

.points {
  position: relative;
  background: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%);
  background-image: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%), url("../../images/bg-dotto.svg");
  background-repeat: no-repeat, repeat;
  background-size: 100% 140px, auto;
  background-position: top left, top left;
}
@media (min-width: 600px) {
  .points {
    background-size: 100% 350px, auto;
  }
}
.points::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 75px;
  aspect-ratio: 1;
  background-image: url("../../images/char-35.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 600px) {
  .points::before {
    top: -80px;
    left: calc(50% - 540px + 20px);
    width: 189px;
  }
}
@media (min-width: 992px) {
  .points::before {
    top: -60px;
    left: calc(50% - 720px + 20px);
    width: 189px;
  }
}
.points__title {
  position: relative;
  width: 100%;
  padding: 25px 0;
}
@media (min-width: 600px) {
  .points__title {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 0 55px;
  }
}
.points__title::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 73px;
  height: 78px;
  background-image: url("../../images/char-24.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 600px) {
  .points__title::before {
    bottom: -20px;
    width: 164px;
    height: 172px;
  }
}
.points__title::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 76px;
  height: 83px;
  background-image: url("../../images/char-26.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 600px) {
  .points__title::after {
    bottom: -20px;
    width: 174px;
    height: 192px;
  }
}
.points__title h2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
  width: 210px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.points__title h2 img {
  margin: 0;
}
@media (min-width: 600px) {
  .points__title h2 {
    width: 100%;
    max-width: 480px;
    flex-direction: row;
    align-items: baseline;
  }
  .points__title h2 span {
    padding-left: 15px;
    font-size: 3rem;
  }
}
.points__container {
  width: calc(100% - 30px);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 600px) {
  .points__container {
    width: 100%;
    max-width: 1080px;
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
.points__item {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #FCFCFC;
  border-radius: 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1490196078);
}
@media (min-width: 600px) {
  .points__item {
    padding: 30px;
  }
}
.points__item p {
  margin: 0;
  line-height: 1;
  color: #48B034;
  font-weight: 700;
  font-size: 2rem;
}
.points__item p span {
  font-family: "Sofia Pro", "Sofia Sans", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
}
.points__item h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 600px) {
  .points__item h3 {
    text-align: left;
  }
}
.points__item figure {
  margin: 8px 0 0;
}
.points__item figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.points__item-01::after, .points__item-02::after, .points__item-03::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 600px) {
  .points__item-01::after, .points__item-02::after, .points__item-03::after {
    top: -46px;
    right: -12px;
    width: 120px;
    height: 188px;
  }
}
.points__item-01::after {
  background-image: url("../../images/char-19.png");
  top: -24px;
  right: 25px;
  width: 43px;
  height: 94px;
}
.points__item-02::after {
  background-image: url("../../images/char-08.png");
  top: -24px;
  right: 25px;
  width: 43px;
  height: 94px;
}
.points__item-03::after {
  background-image: url("../../images/char-17.png");
  top: -19px;
  right: 18px;
  width: 94px;
  height: 94px;
}

.advantages {
  background-image: url(../../images/bg-dotto.svg);
  background-repeat: repeat;
}
.advantages .section-title {
  margin-bottom: 20px;
}
.advantages .section-title h2 {
  word-break: auto-phrase;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
.advantages .section-title h2 strong {
  letter-spacing: -0.025em;
}
.advantages .section-title p:last-child {
  text-align: justify;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  padding: 0 15px;
  margin-bottom: 25px;
}
@media (min-width: 600px) {
  .advantages .section-title p:last-child {
    text-align: center;
    margin-bottom: 40px;
  }
}
.advantages .section-title .fukidashi {
  width: 100%;
  max-width: 314px;
}
@media (min-width: 600px) {
  .advantages .section-title .fukidashi {
    max-width: 470px;
  }
}
.advantages .section-title .small {
  font-size: 0.85em;
}

.advantages__inner .youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.advantages__inner .youtube-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.advantages__inner .youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.adv-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 10px;
  background: #fff;
  border: 3px solid #48B034;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
  margin: 0 auto;
  max-width: 300px;
}
@media (min-width: 992px) {
  .adv-card {
    padding: 20px 20px 10px 20px;
  }
}
.adv-card__ic {
  margin: 0 auto;
  width: 40px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.adv-card__ttl {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: #48B034;
  text-align: center;
}
.adv-card__txt {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.7;
  text-align: justify;
}

.advantages__grid {
  width: 100%;
}
.advantages__container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "video" "left" "right";
  gap: 16px;
}
@media (min-width: 600px) {
  .advantages__container {
    width: 100%;
    max-width: 1320px;
    gap: 20px;
  }
}
.advantages__col {
  display: grid;
  gap: 20px;
}
.advantages__col--left {
  grid-area: left;
}
.advantages__col--right {
  grid-area: right;
}
@media (min-width: 600px) {
  .advantages__col--left, .advantages__col--right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1080px) {
  .advantages__container {
    max-width: 1320px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 640px) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-template-areas: none;
    align-items: stretch;
    gap: 40px 20px;
  }
  .advantages__col--left, .advantages__col--right {
    display: contents;
  }
  .advantages__col--left > .adv-card:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .advantages__col--left > .adv-card:last-child {
    grid-column: 1;
    grid-row: 2;
  }
  .advantages__col--right > .adv-card:first-child {
    grid-column: 3;
    grid-row: 1;
  }
  .advantages__col--right > .adv-card:last-child {
    grid-column: 3;
    grid-row: 2;
  }
}
.advantages__container > .youtube-wrap, .advantages__col--center {
  grid-area: video;
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 10px;
}
@media (min-width: 1080px) {
  .advantages__container > .youtube-wrap, .advantages__col--center {
    grid-column: 2;
    grid-row: 1/span 2;
    align-self: center;
  }
}
.advantages__container > .youtube-wrap iframe, .advantages__col--center iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
  display: block;
}
.advantages__container > .youtube-wrap p, .advantages__col--center p {
  margin: 8px 0 0;
  text-align: right;
  font-size: 1.4rem;
}
.advantages .cta-area {
  padding: 0 15px;
}
.advantages .cta-area .cta-btn {
  padding: 16px 0px 16px 0px;
}

.product {
  display: block;
  padding: 30px 0 60px;
  background: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%);
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 98%, 50% 100%, 0 98%);
          clip-path: polygon(0 0, 100% 0, 100% 98%, 50% 100%, 0 98%);
  min-height: 160px;
}
@media (min-width: 600px) {
  .product {
    min-height: 220px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
            clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
    padding: 80px 0;
  }
}
.product__container {
  max-width: 1080px;
  margin: 0 auto;
}
.product__container h2 {
  text-align: center;
  color: white;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.8;
  margin: 0;
}
@media (min-width: 600px) {
  .product__container h2 {
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
}
.product__container h2 span {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.product__container h2 span::before {
  content: "・・・・・・・・";
  position: absolute;
  top: -0.75em;
  letter-spacing: 0.08em;
  left: 51%;
  transform: translateX(-50%);
  font-size: 0.8em;
  color: #fff;
  pointer-events: none;
}
@media (min-width: 600px) {
  .product__container h2 span::before {
    letter-spacing: 0.15em;
    left: 50%;
  }
}
.product__container h2 strong {
  font-size: 1.25em;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.35em;
  text-decoration-thickness: 5px;
}
.product__list {
  position: relative;
  margin-top: 90px;
}
@media (min-width: 600px) {
  .product__list {
    margin-top: 100px;
  }
}
.product__list h3 {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.9rem, 2.5vw, 2.1rem);
  margin: 0;
  z-index: 1;
  min-width: 234px;
  background-color: white;
  border: 2px solid #009944;
  border-radius: 8px;
  text-align: center;
  color: #009944;
  padding: 5px 0;
}
@media (min-width: 600px) {
  .product__list h3 {
    width: 100%;
    max-width: 400px;
    padding: 10px 0;
  }
}
.product__list::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 10px;
  width: 104px;
  height: 80px;
  background-image: url("../../images/char-27.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 600px) {
  .product__list::before {
    top: -130px;
    left: -120px;
    width: 237px;
    height: 185px;
  }
}
.product__list::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 10px;
  width: 88px;
  height: 126px;
  background-image: url("../../images/char-18.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 600px) {
  .product__list::after {
    top: -190px;
    right: -80px;
    width: 160px;
    height: 230px;
  }
}
.product__list ul {
  width: calc(100% - 30px);
  margin: 0 auto;
  list-style: none;
  padding: 40px 0;
  background-color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 0px;
  border-radius: 8px;
}
@media (min-width: 600px) {
  .product__list ul {
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    gap: 0px;
    padding: 40px;
    border-radius: 16px;
  }
}
.product__list li,
.product__list .product__item {
  background: #fff;
  text-align: center;
  padding: 16px 8px;
  display: grid;
  place-items: center;
  row-gap: 8px;
}
@media (min-width: 600px) {
  .product__list li,
  .product__list .product__item {
    padding: 18px 10px;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
  }
}
@media (min-width: 600px) {
  .product__list li.product__item--last-col,
  .product__list .product__item.product__item--last-col {
    border-right: none;
  }
}
@media (min-width: 600px) {
  .product__list li.product__item--last-row,
  .product__list .product__item.product__item--last-row {
    border-bottom: none;
  }
}
.product__list .product__item--even {
  background: #FCFCFC;
}
.product__list figure {
  margin: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 600px) {
  .product__list figure {
    width: 80px;
    height: 80px;
  }
}
.product__list figure img {
  width: 62px;
  height: 62px;
}
@media (min-width: 600px) {
  .product__list figure img {
    width: 80px;
    height: 80px;
  }
}
.product__list p {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  font-weight: 600;
}

.reasons {
  padding: 60px 0 0;
}
.reasons .section-title {
  padding: 0 30px;
}
.reasons .section-title h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}
.reasons .section-title h2 strong {
  font-size: clamp(4rem, 5vw, 5.8rem);
}
.reasons .section-title .fukidashi {
  width: 100%;
  max-width: 743px;
}
.reasons .section-title p:last-child {
  text-align: justify;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
}
@media (min-width: 600px) {
  .reasons .section-title p:last-child {
    text-align: center;
  }
}

.reasons__container {
  width: 100%;
  padding: 60px 15px 80px;
  background-color: #E9E9E9;
}

.reasons__table {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  -moz-column-gap: 4px;
       column-gap: 4px;
  background: #E9E9E9;
  border: none;
}
@media (max-width: 768px) {
  .reasons__table {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 600px) {
  .reasons__table {
    max-width: 910px;
    margin: 0 auto;
    grid-template-columns: auto 1fr;
    -moz-column-gap: 4px;
         column-gap: 4px;
  }
}
@media (min-width: 769px) {
  .reasons__table {
    grid-template-columns: 300px 1fr;
  }
}

.reasons__col--labels {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #E9E9E9;
  border-right: none;
  display: grid;
  grid-template-rows: 64px 180px repeat(15, 54px);
  row-gap: 4px;
}

.reasons__col--service {
  display: grid;
  align-content: start;
  grid-template-rows: 64px 180px repeat(15, 54px);
  row-gap: 4px;
}

.reasons__services {
  overflow-x: auto;
  display: grid;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.reasons__head {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  place-items: center center;
  background: #48B034;
  color: #fff;
  font-weight: 600;
  min-height: 64px;
  padding: 10px 14px;
  border-bottom: none;
}
.reasons__head .name {
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.reasons__head .price {
  margin: 6px 0 0;
  padding: 0 0 0 16px;
  font-size: 1.2rem;
}
.reasons__head .price li {
  line-height: 1.4;
}
.reasons__head .note {
  margin: 0;
  font-size: 1.2rem;
}

.is-famcloud .reasons__head .name {
  font-size: clamp(2.8rem, 2.5vw, 3.2rem);
  font-weight: 700;
}

.is-competitor .reasons__head .name {
  font-size: 2.1rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  .reasons__head {
    position: static;
    top: auto;
  }
}
.reasons__col--labels .reasons__head {
  visibility: hidden;
  background: transparent;
  border-bottom-color: transparent;
}

.is-famcloud .reasons__head {
  background: #48B034;
  color: #fff;
  border-radius: 8px 8px 0 0;
}

.is-competitor .reasons__head {
  background: #2b2b2b;
  color: #fff;
  border-bottom-color: #000;
  border-radius: 8px 8px 0 0;
}

.reasons__label,
.reasons__value {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: 0px 12px;
  border-bottom: none;
  text-align: center;
}
@media (min-width: 992px) {
  .reasons__label,
  .reasons__value {
    padding: 0px 20px;
  }
}

.reasons__label {
  font-weight: 700;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .reasons__label {
    padding-left: 40px;
  }
}

.reasons__col--labels > div:nth-of-type(2) {
  border-radius: 10px 0 0 0;
}

.reasons__value {
  position: relative;
  text-align: center;
}

.reasons__value--price {
  overflow: visible;
  padding-top: 0;
}

.reasons__value--price .price {
  margin: 0;
  padding-left: 0;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
  display: grid;
  gap: 2px;
}

.reasons__value--price .price li {
  list-style: none;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: inherit;
  font-weight: inherit;
}

.reasons__value--price .price li em {
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 600px) {
  .reasons__value--price {
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .reasons__value--price .price {
    gap: 6px;
    width: 100%;
  }
  .reasons__value--price .price li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.is-famcloud .reasons__value.is-yes::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../../images/icon-check-green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.is-competitor .reasons__value.is-yes::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("../../images/icon-check-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reasons__value.is-no::after {
  content: "—";
  color: #333;
  font-size: 18px;
  font-weight: 700;
}

.reasons__value.is-note {
  font-size: 1.5rem;
}

.reasons__value.is-note::before {
  content: none;
}

.reasons__value.is-note::after {
  content: "追加料金あり";
  font-weight: 700;
}

.is-famcloud .reasons__value {
  background: #F2FBF5;
}

.is-competitor .reasons__value {
  background: #F5F5F5;
}

.reasons__label {
  background: #FFFFFF;
}

@media (min-width: 600px) {
  .reasons__table {
    overflow: visible;
  }
  .reasons__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(268px, 1fr));
    -moz-column-gap: 8px;
         column-gap: 8px;
    justify-content: start;
  }
}
@media (min-width: 600px) {
  .reasons__col--labels,
  .reasons__col--service {
    grid-template-rows: 64px var(--price-row-height-pc, 140px) repeat(15, 54px);
  }
}
.reasons__services {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(164px, 43.7vw, 300px);
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  gap: 0;
}
.reasons__services > .reasons__col {
  scroll-snap-align: start;
  border-right: 3px solid #e9e9e9;
}

.reasons__col {
  width: auto;
}

@media (max-width: 920px) {
  .reasons__col {
    width: clamp(164px, 43.7vw, 100%);
  }
}
@media (max-width: 768px) {
  .reasons__col--labels {
    width: 164px;
    flex-shrink: 0;
  }
}
@media (min-width: 600px) and (max-width: 768px) {
  .reasons__col--labels {
    width: 220px;
    flex-shrink: 0;
  }
}
.reasons__col--labels .reasons__label {
  position: relative;
}

.reasons__col--labels .reasons__label:nth-of-type(n+3):nth-of-type(-n+7)::after {
  content: "補助金対象";
  display: inline-block;
  padding: 0px 8px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #fff;
  background: #FF6B7A;
  border-radius: 4px;
  position: absolute;
  right: 7px;
  top: -4px;
  font-weight: 500;
}
@media (min-width: 600px) {
  .reasons__col--labels .reasons__label:nth-of-type(n+3):nth-of-type(-n+7)::after {
    padding: 0px 10px;
  }
}

@media (min-width: 600px) {
  .reasons__col--labels .reasons__label:nth-of-type(n+3):nth-of-type(-n+7)::after {
    position: static;
    margin-left: auto;
  }
}
.simulation {
  background-image: url("../../images/bg-simulation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.simulation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(76, 175, 80, 0.3);
  z-index: 1;
}
.simulation > * {
  position: relative;
  z-index: 2;
}
.simulation .simulation__banner {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.simulation .simulation__banner .simulation__banner-text {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  display: block;
  background-color: #333333;
  color: white;
  padding: 20px 15px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 600px) {
  .simulation .simulation__banner .simulation__banner-text {
    max-width: 726px;
    width: 85vw;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.simulation .simulation__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .simulation .simulation__container {
    padding: 0 16px;
  }
}
.simulation .simulation__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 15px 15px 40px 15px;
}
@media (min-width: 600px) {
  .simulation .simulation__card {
    padding: 90px 60px 70px 60px;
  }
}
.simulation .simulation__placeholder {
  display: grid;
  place-items: center;
  position: relative;
}
.simulation .simulation__placeholder img {
  width: 100%;
}
.simulation .simulation__text {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.6;
  margin: 20px 0 40px;
}
@media (min-width: 600px) {
  .simulation .simulation__text {
    margin: 30px 0;
  }
}
.simulation .cta-area {
  margin-top: 0;
}
@media (min-width: 600px) {
  .simulation .cta-area br {
    display: none;
  }
}

.voice {
  background-image: url("../../images/bg-dotto.svg");
  background-repeat: repeat;
  padding: 60px 0 80px;
}
.voice .voice__container {
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 15px;
}
@media (min-width: 600px) {
  .voice .voice__container {
    padding: 0 60px;
  }
}
.voice .section-title h2 {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .voice .section-title h2 {
    margin-bottom: 50px;
  }
  .voice .section-title h2 strong {
    padding-left: 10px;
  }
}
.voice .t-card {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  gap: 20px;
  padding: 70px 20px 40px;
  background: #fff;
  border-radius: 16px;
  color: #323232;
  text-align: justify;
  overflow: hidden;
}
.voice .t-card__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  z-index: 2;
}
.voice .t-card__body {
  margin: 0;
  padding-top: 6px;
}
.voice .t-card__body p {
  margin: 0;
  line-height: 1.7;
}
.voice .t-card__footer {
  display: grid;
  padding-right: 50px;
}
.voice .t-card__name {
  margin: 0 0 8px 0;
  font-weight: 700;
  line-height: 1;
}
.voice .t-card__name .t-card__area {
  font-size: 0.85em;
}
.voice .t-card__role {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
}
.voice .t-card__thumb {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  z-index: 1;
}
@media (min-width: 600px) {
  .voice .t-card {
    padding: 80px 20px 40px;
    gap: 30px;
  }
  .voice .t-card__icon {
    width: 52px;
    height: 48px;
    top: 25px;
    left: 20px;
  }
  .voice .t-card__body p {
    line-height: 1.8;
  }
  .voice .t-card__footer {
    padding-right: 100px;
  }
  .voice .t-card__thumb {
    width: 96px;
    height: 96px;
    right: 16px;
    bottom: 16px;
  }
}
.voice .splide__slide {
  display: flex;
  height: auto;
  padding: 8px 0;
}
.voice .splide__slide .t-card {
  width: 90%;
  margin: 0 auto;
  max-width: 400px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1490196078);
}
@media (min-width: 600px) {
  .voice .splide__slide .t-card {
    width: 96%;
  }
}
.voice .splide__arrow {
  background: none;
  opacity: 1;
  width: 12px;
  height: 24px;
}
.voice .splide__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .voice .splide__arrow {
    width: 15px;
    height: 30px;
  }
}
@media (min-width: 1081px) {
  .voice .splide__arrow {
    width: 18px;
    height: 36px;
  }
}
.voice .splide__arrow--prev {
  left: -4px;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .voice .splide__arrow--prev {
    left: -30px;
  }
}
@media (min-width: 1081px) {
  .voice .splide__arrow--prev {
    left: -30px;
  }
}
.voice .splide__arrow--next {
  right: -4px;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .voice .splide__arrow--next {
    right: -30px;
  }
}
@media (min-width: 1081px) {
  .voice .splide__arrow--next {
    right: -30px;
  }
}

.feature {
  position: relative;
  background: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%);
}
.feature .section-title {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .feature .section-title {
    margin-bottom: 40px;
  }
}
@media (min-width: 600px) {
  .feature .section-title h2 {
    margin-bottom: 40px;
  }
}
.feature .section-title h2 span {
  font-size: 3.4rem;
}
@media (min-width: 600px) {
  .feature .section-title h2 span {
    font-size: 4.8rem;
  }
}
.feature .inner {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 50px 15px 100px;
  background-color: white;
  border-radius: 24px;
}
@media (min-width: 600px) {
  .feature .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 60px;
    border-radius: 150px;
  }
}
.feature .inner::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -10px;
  left: 0px;
  width: 160px;
  background-image: url("../../images/char-371.png"), url("../../images/char-24.png");
  background-size: 140px 100px, 100px 106px;
  background-repeat: no-repeat, no-repeat;
  background-position: left 10px top 0px, left 30px bottom 0px;
  z-index: 5;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .feature .inner::before {
    top: -20px;
    bottom: 0px;
    left: -5vw;
    width: 410px;
    background-size: 360px 250px, 240px 250px;
    background-position: left 60px top 0px, left 0px bottom 0px;
  }
}
.feature .inner::after {
  content: "";
  position: absolute;
  top: -20px;
  bottom: 0px;
  right: 0px;
  width: 140px;
  background-image: url("../../images/char-07.png"), url("../../images/char-26.png");
  background-size: 76px 104px, 100px 110px;
  background-repeat: no-repeat, no-repeat;
  background-position: right 10px top 0px, right 30px bottom 0px;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .feature .inner::after {
    top: -20px;
    bottom: 0px;
    right: -4vw;
    width: 268px;
    background-size: 160px 210px, 248px 273px;
    background-position: right 40px top 40px, right 0px bottom 0px;
  }
}
.feature__title {
  margin: 0 0 24px;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  font-size: clamp(3.5rem, 5vw, 6rem);
  font-feature-settings: "palt";
}
.feature__title span.cr {
  color: #F67070;
}
.feature__title strong {
  font-weight: 700;
  font-size: 1.25em;
}
@media (min-width: 600px) {
  .feature__title strong {
    font-size: 1em;
  }
}
.feature__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
}
@media (min-width: 600px) {
  .feature__list {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}
.feature__item {
  margin: 0;
  width: 100%;
  max-width: 400px;
  background: #fff;
}
.feature__item h4 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
  padding: 0 0 0 15px;
}
.feature__item p {
  margin: 0;
  line-height: 1.4;
}
.feature__item .feature__description {
  font-size: 1.4rem;
  height: 40px;
}
.feature__item + .feature__item {
  border-top: 2px dashed #707070;
  padding-top: 28px;
}
@media (min-width: 600px) {
  .feature__item + .feature__item {
    border-top: none;
    padding-top: 0px;
  }
}
.feature__figure {
  margin: 0;
}
.feature__figure img {
  width: 100%;
  height: auto;
  display: block;
}
.feature__benefit {
  line-height: 1.7;
  border: 2px solid #F67070;
  border-radius: 10px;
  padding: 20px 15px 15px;
  background: #fff;
  position: relative;
  margin-top: 35px;
  line-height: 140%;
}
.feature__benefit .badge {
  display: inline-block;
  background: #F67070;
  color: #fff;
  font-weight: 700;
  padding: 2px 10px;
  margin-right: 8px;
  font-size: 1.4rem;
  position: absolute;
  top: -14px;
  left: 15px;
  border-radius: 5px;
  vertical-align: middle;
}
.feature__benefit-list {
  margin-top: 8px;
}
.feature__benefit-list p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
.feature__benefit-list p:first-child {
  font-weight: 700;
}
.feature__benefit-list p:last-child {
  padding-left: 14px;
}

.benefits {
  background: linear-gradient(90deg, #48B034 0%, #3AAF5A 100%);
  padding-bottom: 0;
}
@media (min-width: 600px) {
  .benefits {
    overflow: hidden;
  }
}
.benefits .inner {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 auto;
  background-color: white;
  border-radius: 24px;
  padding: 60px 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
@media (min-width: 600px) {
  .benefits .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 60px;
  }
}
.benefits .inner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 45%;
  transform: translateX(-50%);
  width: 310px;
  height: 120px;
  background-image: url("../../images/char-322.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 600px) {
  .benefits .inner::before {
    top: -85px;
    width: 40vw;
    max-width: 534px;
    height: 210px;
    left: 85%;
  }
}
.benefits .inner .title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.benefits .inner .title-wrap h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  text-align: center;
  margin: 0;
  font-feature-settings: "palt";
  line-height: 140%;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap h2 {
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
  }
}
.benefits .inner .title-wrap__content {
  display: flex;
  flex-direction: column;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap__content {
    text-align: left;
    flex-direction: row;
    gap: 0;
    align-items: baseline;
    flex-wrap: wrap;
  }
}
.benefits .inner .title-wrap__content p {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap__content p {
    letter-spacing: 0.05em;
  }
}
.benefits .inner .title-wrap__content .title-wrap__main {
  font-size: 4.8rem;
  color: #48B034;
  font-weight: 700;
}
.benefits .inner .title-wrap__content .title-wrap__main span {
  font-size: 0.85em;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap__content .title-wrap__main {
    font-size: 5.2rem;
  }
}
.benefits .inner .title-wrap__content .title-wrap__small {
  font-size: 3.8rem;
  color: #333;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap__content .title-wrap__small {
    font-size: 4.1rem;
  }
}
.benefits .inner .title-wrap__content .title-wrap__small-inline {
  font-size: 3.8rem;
  color: #333;
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap__content .title-wrap__small-inline {
    font-size: 4.1rem;
  }
}
@media (min-width: 600px) {
  .benefits .inner .title-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
  }
}
.benefits__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 600px) {
  .benefits__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 30px;
  }
}
.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefits__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 auto 20px;
}
.benefits__text {
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}
.benefits .cta-btn {
  min-width: 280px;
  font-weight: 700;
}
@media (min-width: 600px) {
  .benefits .cta-btn {
    min-width: 440px;
  }
}
.benefits .cta h2 strong {
  font-size: 1.2em;
  font-weight: 700;
}
@media (min-width: 600px) {
  .benefits .cta h2 strong {
    font-size: 1em;
    font-weight: 700;
  }
}

.campaign {
  background-image: url("../../images/bg-slash.svg");
  background-repeat: repeat;
}
.campaign .section-title p {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
}
.campaign__container {
  padding: 0 30px;
  width: 100%;
  position: relative;
}
@media (min-width: 600px) {
  .campaign__container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
  }
}
.campaign__container::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  min-width: 84px;
  height: auto;
  background-image: url("../../images/char-04.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 600px) {
  .campaign__container::before {
    width: 277px;
    top: -200px;
    left: -130px;
  }
}
.campaign__container::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 105px;
  height: auto;
  background-image: url("../../images/char-09.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 600px) {
  .campaign__container::after {
    width: 348px;
    bottom: -220px;
    right: 0px;
  }
}
.campaign__container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 600px) {
  .campaign__container > ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
.campaign__container li img {
  width: 100%;
  height: auto;
  display: block;
}
.campaign__container li.is-placeholder {
  display: none;
}
@media (min-width: 600px) {
  .campaign__container li.is-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 590/390;
    background-color: #fff;
    border-radius: 8px;
  }
}
@media (min-width: 600px) {
  .campaign__container > ul:has(> li:last-child:nth-child(odd))::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 590/390;
    background-color: #fff;
    border-radius: 8px;
    grid-column: auto/span 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
}

.img-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}
.img-modal.is-active {
  display: flex;
}
.img-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.img-modal img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
.img-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.08s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.img-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}
.img-modal__close:active {
  transform: scale(0.96);
}

.questions {
  background-color: #F4F9F1;
}
.questions .section-title h2 {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .questions .section-title h2 {
    margin-bottom: 34px;
  }
}

.qa {
  max-width: 910px;
  margin: 24px auto 0;
  padding: 0 12px;
}
@media (min-width: 600px) {
  .qa {
    padding: 0 15px;
  }
}

.subsidy .section-title h2 {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .subsidy .section-title h2 {
    margin-bottom: 30px;
  }
  .subsidy .section-title h2 small {
    font-size: 1em;
  }
}
.subsidy .fukidashi {
  width: calc(100% - 30px);
  max-width: 743px;
  font-size: clamp(1.9rem, 2vw, 3rem);
  padding: 20px 0;
}
@media (min-width: 600px) {
  .subsidy .fukidashi span {
    font-size: 2.6rem;
  }
  .subsidy .fukidashi::after {
    border-top: 24px solid #48B034;
  }
}

.subsidy__container {
  max-width: 910px;
  margin: 0 auto;
  padding: 0 15px;
}

.subsidy-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 16px 0;
  overflow: hidden;
  border: 2px solid #48B034;
}

.subsidy-item__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  cursor: pointer;
  list-style: none;
}
@media (min-width: 600px) {
  .subsidy-item__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    cursor: pointer;
    list-style: none;
  }
}

.subsidy-item__summary::-webkit-details-marker {
  display: none;
}

.subsidy-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009944;
  color: #fff;
  font-weight: 700;
  flex: 0 0 40px;
  font-size: 2.1rem;
}

.subsidy-item__title {
  font-size: clamp(1.7rem, 2vw, 2rem);
  line-height: 1.6;
  color: #009944;
  margin: 0;
  font-feature-settings: "palt";
}

.subsidy-item__toggle {
  margin-left: auto;
  position: relative;
  border-radius: 50%;
  background: #0a9444;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex: 0 0 26px;
}
.subsidy-item__toggle::before, .subsidy-item__toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.subsidy-item__toggle::before {
  width: 12px;
  height: 2px;
  border-radius: 1px;
}
.subsidy-item__toggle::after {
  width: 2px;
  height: 12px;
  border-radius: 1px;
  transition: opacity 0.2s ease;
}

@media (min-width: 600px) {
  .subsidy-item__toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    flex: 0 0 30px;
  }
  .subsidy-item__toggle::before {
    width: 14px;
  }
  .subsidy-item__toggle::after {
    height: 14px;
  }
}
.subsidy-item[open] .subsidy-item__toggle::after {
  opacity: 0;
}

.subsidy-item__content {
  padding: 0 20px 22px;
}

.subsidy-item__content h4 {
  font-size: 1.8rem;
  margin: 16px 0 6px;
  position: relative;
  padding-left: 24px;
}
.subsidy-item__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #009944;
}

.subsidy-item__content p {
  margin: 0 0 8px;
}

.qa-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 16px 0;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
.qa-item[open] .qa-item__toggle::after {
  opacity: 0;
}

.qa-item__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}
.qa-item__summary::-webkit-details-marker {
  display: none;
}
.qa-item__summary::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../../images/icon-q.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 40px;
}

.qa-item__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 40px;
  font-size: 0;
}
.qa-item__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.qa-item__icon.qa-item__icon--q::before {
  background-image: url("../../images/icon-q.svg");
}
.qa-item__icon.qa-item__icon--a::before {
  background-image: url("../../images/icon-a.svg");
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border-radius: 50%;
}

.qa-item__title {
  font-size: 16px;
  line-height: 1.6;
  color: #009944;
  margin: 0;
}
@media (min-width: 600px) {
  .qa-item__title {
    font-size: 18px;
  }
}

.qa-item__toggle {
  margin-left: auto;
  position: relative;
  border-radius: 50%;
  background: #009944;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex: 0 0 26px;
}
.qa-item__toggle::before, .qa-item__toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.qa-item__toggle::before {
  width: 12px;
  height: 2px;
  border-radius: 1px;
}
.qa-item__toggle::after {
  width: 2px;
  height: 12px;
  border-radius: 1px;
  transition: opacity 0.2s ease;
}

@media (min-width: 600px) {
  .qa-item__toggle {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    flex: 0 0 30px;
  }
  .qa-item__toggle::before {
    width: 14px;
  }
  .qa-item__toggle::after {
    height: 14px;
  }
}
.qa-item__content {
  margin: 0 24px 20px;
  border-top: 1px dashed #009944;
}
.qa-item__content p {
  margin: 16px 0 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-right: 0;
  text-align: justify;
}
.qa-item__content p::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  border-radius: 50%;
  background-image: url("../../images/icon-a.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
@media (min-width: 600px) {
  .qa-item__content p {
    padding-right: 40px;
  }
}

.contact {
  background-image: url("../../images/bg-dotto.svg");
  background-repeat: repeat;
}
.contact__inner {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  background-color: white;
  padding: 50px 10px 40px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  .contact__inner {
    padding: 80px 10px 60px;
  }
}
.contact .section-title h2 {
  white-space: nowrap;
}
.contact .section-subtitle p {
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .contact .section-subtitle p {
    margin-bottom: 34px;
  }
}
.contact .contact__form {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 16px;
}
.contact .form-grid {
  display: grid;
  gap: 22px;
}
.contact .form-row {
  display: grid;
  gap: 12px;
}
@media (min-width: 600px) {
  .contact .contact__inner {
    margin: 0 auto;
  }
  .contact .form-grid {
    gap: 0px;
  }
  .contact .form-row {
    gap: 24px;
    grid-template-columns: 1fr 2fr;
    align-items: center;
  }
  .contact .form-row + .form-row {
    margin-top: 25px;
    padding-top: 25px;
    position: relative;
  }
  .contact .form-row + .form-row::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: #dee2e6;
  }
  .contact .form-row--textarea {
    align-items: start;
  }
  .contact .form-label {
    justify-content: space-between;
  }
}
.contact .form-label {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact .badge-required {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.2rem;
  color: #fff;
  background: #F67070;
  border-radius: 4px;
}
.contact .form-input {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 6px;
  background: #F5F8FA;
  padding: 8px 12px;
}
.contact .form-textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}
.contact .form-consent {
  margin-top: 30px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  text-align: center;
}
.contact .form-consent strong {
  color: #48B034;
}
.contact .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact .checkbox input {
  width: 18px;
  height: 18px;
}
.contact .form-actions {
  margin-top: 40px;
  text-align: center;
}
.contact .contact__submit {
  width: min(300px, 100%);
  background: linear-gradient(90deg, #47B036 0%, #3AAF5B 100%);
  color: #fff;
  border-radius: 30px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 1.9rem;
}/*# sourceMappingURL=style.css.map */