/* ========= 基本設定 ========= */
:root {
  --brand-main: #8ec31f;
  --brand-deep: #22957e;
  --brand-light: #ebf7d3;

  --gray-line: #c7c7c7;
  --gray-light: #f2f2f2;
  --gray-text: #adadad;

  --text: #333;

  --biz-red: #e7736d;
  --biz-yellow: #f4d250;
  --biz-lightblue: #64d6ed;
  --biz-orange: #f69d61;
  --biz-green: #b3cd3c;
  --biz-purple: #9f82b8;
  --biz-pink: #fc9898;
  --biz-blue: #8bb6ff;

  --search-bg: #e9f3c6;
  --line: #d9d9d9;

  --flow-duration: 40s; /* 既定の速度（JSで上書きされます） */
}

.font-sans {
  font-family: "Noto Sans JP", system-ui, sans-serif;
}
.font-raleway {
  font-family: "Raleway", ui-sans-serif, system-ui, sans-serif;
}
.font-poppins {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  letter-spacing: 0.04em;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
}

p {
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: none;
}
.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 0;
  max-width: 1480px;
  margin-inline: auto;
}

.hdr__logo {
  width: 13vw;
}

.hdr__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 14px 40px;
  gap: 20px;
  border-radius: 100px;
  background: #fff;
}

.hdr__list a {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.04em;
}

.hdr__toggle {
  display: none;
  background: none;
  border: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* メニューより前面に表示 */

  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* ハンバーガーメニューのレスポンシブ対応 */
.hdr__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-main);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  border-radius: 9999px;
}

.hdr__toggle-line:nth-child(1) {
  top: 13px;
}

.hdr__toggle-line:nth-child(2) {
  top: 20px;
}

.hdr__toggle-line:nth-child(3) {
  top: 27px;
}

/* アクティブ時のアニメーション（×マークに変化） */
.hdr__toggle.is-active .hdr__toggle-line:nth-child(1) {
  top: 15px;
  transform: translateX(-50%) rotate(45deg);
}

.hdr__toggle.is-active .hdr__toggle-line:nth-child(2) {
  opacity: 0;
}

.hdr__toggle.is-active .hdr__toggle-line:nth-child(3) {
  top: 15px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-block;
  color: #fff;
  padding: 6px 14px;
  border: 0;
  cursor: pointer;

  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
  line-height: 220%;
  letter-spacing: 0.04em;

  opacity: 1;
  border-radius: 4px;
  background: linear-gradient(90deg, #ffb351 0%, #ff8839 100%);
  transition: all 0.3s ease;
}
.btn {
  background: linear-gradient(90deg, #ffb351, #ff8839, #ffb351);
  background-size: 200% auto;
  transition: 0.4s ease;
}

.btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 136, 57, 0.25);
}

.btn2 {
  width: 500px;
  padding: 12px 40px;
  gap: 0.8em;
  border-radius: 6px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(12.363636363636363px + 0.9090909090909091vw),
    26px
  );
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.btn2::before {
  content: "";
  width: 490px;
  height: calc(100% - 10px);
  opacity: 1;
  border-radius: 3px;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 5px;
}

.btn--ghost {
  background: #fff;
  border: 1px solid var(--brand-main);
  padding: 12px 40px;
  gap: 32px;
  display: flex;
  align-items: center;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(12.545454545454545px + 0.36363636363636365vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  color: var(--text);
}

.btn--ghost {
  transition: all 0.25s ease;
}

.btn--ghost:hover {
  border-color: var(--brand-main);
  background: var(--brand-main);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 136, 57, 0.25);
}

.btn--block {
  display: block;
  width: 100%;
}

/* ---------- Key Visual fixed text ---------- */
.kv {
  position: relative;
  overflow: hidden;
  height: 88vh;
  min-height: 480px;
  background: #f4fbe4;
  margin-top: -109px;
}

.kv__slides {
  position: absolute;
  right: 0;
  top: 0;
  width: 78vw;
  max-height: 800px;
  height: 100%;
  border-bottom-left-radius: 100px;
  overflow: hidden;
}

.kv__slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.kv__slide.is-active {
  opacity: 1;
  animation: kv-zoom 7s ease-out both;
}
@keyframes kv-zoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* 固定キャッチのあしらい */
.kv__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 0 3% 6%;
}

.kv__catch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv__line {
  display: inline-block;
  background: #fff;
  box-shadow: 6px 6px 0px 0 var(--brand-deep);
  padding: 10px 30px;
  border-radius: 6px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(8.545454545454545px + 2.3636363636363638vw),
    44px
  );
  line-height: 160%;
  letter-spacing: 0.04em;
  width: fit-content;
}
.kv__line span {
  color: var(--brand-deep);
}

/* ---------- Concerns (bubbles + characters) ---------- */
.concerns {
  background: #f2f9e9;
  padding: 100px 0 10px;
  position: relative;
}

.concerns__lead {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--brand-deep);
  margin-bottom: 40px;
}

.concerns__bubbles {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  justify-items: center;
  margin-bottom: -72px;
}
.bubble {
  background: #fff;
  border-radius: 4px;
  padding: 14px 20px;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    16px,
    calc(14.545454545454545px + 0.36363636363636365vw),
    20px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
}
.bubble span {
  color: var(--brand-deep);
}
.bubble--left,
.bubble--right {
  margin-top: 4em;
}

.bubble {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.bubble.animate {
  opacity: 1;
  transform: none;
}

@keyframes bubblePopIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.concerns__chars {
  display: flex;
  gap: 42px;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  margin-bottom: -24px;
}
.char {
  width: 140px;
  aspect-ratio: 1/1;
  transform-origin: 50% 92%;
  z-index: 5;
}

/* おじいさん（左→右→左） */
.char--grandpa {
  transform: scale(-1, 1);
  animation: kaku2-left 1.5s steps(2, end) infinite;
}
/* おばあさん（右→左→右） */
.char--grandma {
  animation: kaku2-right 1.5s steps(2, end) infinite;
}

/* 2段階カクカク：左始まり */
@keyframes kaku2-left {
  0% {
    transform: rotate(-12deg) scale(-1, 1);
  }
  100% {
    transform: rotate(12deg) scale(-1, 1);
  }
}
/* 2段階カクカク：右始まり */
@keyframes kaku2-right {
  0% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}

.circle {
  display: inline-block;
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 180px;
  border-radius: 50% / 100% 100% 0 0;
  background: #d3eb9d;
}

/* ---------- Features ---------- */

.features {
  background: #f4fbe4;
}
.features__wrap {
  width: 92.688%;
  max-width: 1200px;
  margin-inline: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 0 100px;
  z-index: 3;
  position: relative;
}

.tri-down {
  --base: 90px; /* 底辺の長さ */
  --height: 38px; /* 高さ */
  width: 0;
  height: 0;
  border-left: calc(var(--base) / 2) solid transparent;
  border-right: calc(var(--base) / 2) solid transparent;
  border-top: var(--height) solid #d3eb9d;
  margin: 31px auto;
}

.features__lead {
  width: 54%;
  min-width: 480px;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  margin: 0 auto 80px;
}

.features__lead p {
  text-align: center;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.8;
  font-size: 14px;
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    14px,
    calc(10.363636363636363px + 0.9090909090909091vw),
    24px
  );
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
  text-align: left;
}
.features__lead p span {
  display: inline-block;
  color: var(--brand-deep);
  font-size: clamp(
    16px,
    calc(10.181818181818182px + 1.4545454545454546vw),
    32px
  );

  /* 下半分に黄色ハイライト */
  background-image: linear-gradient(
    transparent 68%,
    rgba(255, 255, 0, 0.54) 68%
  );
  background-repeat: no-repeat;
  background-size: 100% 84%;
  padding-bottom: 2px;
}

/* リスト */
.f-list {
  list-style: none;
  margin: 0 0 80px;
  padding: 6px 3% 0;
  display: grid;
  gap: 80px;
}
.f-item {
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #ffffff;
}

.f-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.f-item__body {
  flex: 1;
}

.f-item__body__inner {
  width: 84%;
  margin: 0 auto;
}

.f-item__num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, calc(35.63636363636363px + 1.090909090909091vw), 52px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;

  /* 中抜き処理 */
  color: white;
  -webkit-text-stroke: 2px white; /* 枠線を確保する */
  background: linear-gradient(270deg, #8ec31f 0%, #31a166 100%);
  -webkit-background-clip: text;
  background-clip: text;

  /* ストローク色を背景グラデで塗る */
  -webkit-text-stroke: 2px transparent;
  -webkit-text-fill-color: white;
  background-clip: text;
  -webkit-background-clip: text;
  border: none;
}
.f-item__ttl {
  color: var(--brand-deep);
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.f-item__txt {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}
.f-item__btn {
  margin-top: 30px;
}
.f-item__ph {
  margin: 0;
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}
.f-item__ph img {
  display: block;
  width: 85.3%;
  margin-inline: auto;
  height: auto;
  border-radius: 16px;
}

/* ===== 取り組みセクション ===== */
.effort {
  background: #f4fbe4;
  padding: 140px 0 0;
}
.effort__inner {
  text-align: center;
}

.h2_title {
  text-align: center;
  font-size: clamp(
    18px,
    calc(14.363636363636363px + 0.9090909090909091vw),
    28px
  );
  line-height: 1.6;
  position: relative;
  width: fit-content;

  font-family: Noto Sans JP;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.04em;

  margin: 0 auto 80px;
}

.h2_title::before,
.h2_title::after {
  content: "";
  position: absolute;
  bottom: 0%;
  width: 1.15em;
  height: 1.35em;
}
.h2_title::before {
  left: -2em;
  background: url("/group_home_LP/images/Rectangle2-2.svg") no-repeat
    center/contain;
}
.h2_title::after {
  right: -2em;
  background: url("/group_home_LP/images/Rectangle2-1.svg") no-repeat
    center/contain;
}

/* カード3列 */
.effort__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
}
.effort__item {
  background: #fff;
  padding: 40px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  opacity: 1;
  border-radius: 14px;
}
.effort__icon {
  width: 54%;
  border-radius: 50%;
  margin-bottom: 16px;
}
.effort__item-title {
  color: var(--brand-deep);
  margin-bottom: 12px;

  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: clamp(
    18px,
    calc(16.545454545454547px + 0.36363636363636365vw),
    22px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  text-align: center;
}
.effort__text {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ---------- Flow ---------- */
.flow {
  background: #f4fbe4;
  padding: 140px 0;
}
.flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  width: 80%;
  max-width: 800px;
  gap: 20px;
  padding-bottom: 80px;
}
.flow__step {
  display: flex;
  gap: 40px;
  align-items: center;
}

.flow__body {
  width: 75%;
}

.flow__body h3 {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 22px;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
  align-items: center;
  display: flex;
}

.flow__body h3 .num {
  font-family: Poppins;
  font-weight: 700;
  font-style: Italic;
  font-size: 46px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-align: center;
  background: linear-gradient(270deg, #8ec31f 0%, #22957e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 0.25em;
}

.flow__body p {
  font-family: Noto Sans JP;
  font-weight: 500;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}

.flow__body .btn {
  margin-top: 20px;
  padding: 12px 40px;
  gap: 32px;
  display: flex;
  align-items: center;
  width: fit-content;
}

.flow__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 160px;
}

.flow__arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 15.2px solid #22957e;
}

/* ---------- Movie ---------- */
.movie {
  background: #f4fbe4;
}

.movie__wrap {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  width: 80%;
  aspect-ratio: 560/315;
  margin: 0 auto;
}
.movie__wrap iframe {
  width: 100%;
  height: 100%;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 140px 0 100px;
  background: #f4fbe4;
}
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 84%;
  max-width: 800px;
  margin-inline: auto;
}
.faq__item {
  overflow: hidden;
  font-family: Noto Sans JP;
  font-size: clamp(
    15px,
    calc(13.909090909090908px + 0.27272727272727276vw),
    18px
  );
  line-height: 180%;
  letter-spacing: 0.04em;
  border-bottom: var(--gray-line) 1px solid;
  padding: 40px 0;
}
.faq__q {
  width: 100%;
  text-align: left;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6em;
  align-items: center;
}
.faq__a {
  display: none;
  padding-top: 24px;
}

.toggleIcon {
  cursor: pointer;
}

/* 縦線にやわらかいトランジションを設定 */
.vertical {
  transform-origin: center;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

/* active時に縦線を回転＋透明化 */
.toggleIcon.active .vertical {
  transform: rotate(180deg);
  opacity: 0;
}

/* ---------- CTA ---------- */
.cta {
  background: #f4fbe4;
  padding: 0 0 140px;
}
.cta__box {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}

.cta__box img {
  max-width: 700px;
  width: 88%;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
footer {
  background: var(--brand-deep);
  color: white;
  padding: 40px 0;
  display: flex;
  justify-content: space-around;
}

.ftr__inner img {
  margin-bottom: 40px;
}

.ftr__inner div {
  display: flex;
  gap: 4em;
}

.ftr__copy {
  font-family: Noto Sans JP;
  font-weight: 400;
  font-size: 11px;
  line-height: 180%;
  letter-spacing: 0.05em;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.modal__content {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  margin: 8vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 70px 60px 80px;
}
.modal__close {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--brand-deep);
  color: white;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}
.modal__table tr {
  display: flex;
  flex-direction: column;
  padding-bottom: 18px;
}

.modal__table th {
  font-family: Noto Sans JP;
  font-weight: 700;
  font-size: 20px;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;
}

.modal__table td {
  font-family: Noto Sans JP;
  font-weight: 500;
  font-size: 18px;
  line-height: 220.00000000000003%;
  letter-spacing: 0.04em;

  /* ---------- Utilities ---------- */
  .cta-center {
    display: flex;
    justify-content: center;
    margin: 18px 0 6px;
  }
}

@media (max-width: 960px) {
  .hdr {
    background: #f2f9e9;
  }

  .hdr__inner {
    padding: 14px 20px 10px;
  }

  .hdr__logo {
    width: 28vw;
  }

  .hdr__toggle {
    display: block;
  }
  /* 基本状態：メニューを隠す */
  .hdr__inner .hdr__nav #global-nav.hdr__list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 7.2em 2.4rem;
    display: none;
    z-index: 1000;
    list-style: none;
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  /* 開いた状態：メニューを表示 */
  .hdr__inner .hdr__nav #global-nav.hdr__list.is-open {
    display: flex;
  }

  .hdr__list li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-line);
  }
  .hdr__list li:last-child {
    border-bottom: none;
  }
  .hdr__list li {
    padding: 8px 0;
  }

  .hdr__list a {
    color: var(--brand-deep);
    transition: all 0.3s ease;

    font-family: Noto Sans JP;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.04em;
    display: inline-block;
  }

  .hdr__list .btn {
    color: white;
    padding: 1rem 2rem;
    font-size: 18px;
  }

  .kv {
    height: 50vh;
    min-height: 200px;
    margin-top: 0;
  }

  .kv__slides {
    height: 73%;
    width: 92vw;
    border-bottom-left-radius: 40px;
  }

  .kv__overlay {
    padding: 0 0 2% 5.34%;
  }

  .kv__catch {
    gap: 8px;
  }

  .kv__line {
    padding: 5px 10px;
    box-shadow: 2px 2px 0px 0 var(--brand-deep);
    border-radius: 2px;
  }

  .h2_title {
    margin-bottom: 30px;
  }

  .h2_title::before,
  .h2_title::after {
    width: 0.8em;
    height: 0.9em;
    bottom: 0.35em;
  }
  .h2_title::before {
    left: -1.2em;
  }
  .h2_title::after {
    right: -1.2em;
  }

  .concerns {
    padding: 60px 6% 14px;
  }

  .concerns__lead {
    margin-bottom: 30px;
    padding-inline: 4%;
    line-height: 180%;
  }

  .concerns__bubbles {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    margin-bottom: 40px;
  }

  .bubble--left,
  .bubble--right {
    justify-self: start;
  }

  .bubble--center {
    justify-self: end;
  }
  .concerns__chars {
    gap: 12px;
  }

  .circle {
    width: 180px;
    height: 90px;
  }

  .char {
    width: 70px;
  }

  .bubble--left,
  .bubble--right {
    margin-top: 0;
  }

  .features__wrap {
    padding: 30px 16px 50px;
    border-radius: 16px;
  }

  .tri-down {
    --base: 40px; /* 底辺の長さ */
    --height: 17.5px; /* 高さ */
    margin: 0 auto 30px;
  }

  .features__lead {
    width: 100%;
    min-width: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .features__lead p {
    margin-bottom: 0;
  }

  .features__lead img {
    width: 21%;
  }
  .f-list {
    gap: 60px;
    padding: 0;
    margin-bottom: 30px;
  }

  .f-item {
    flex-direction: column-reverse !important;
  }

  .f-item__ph {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .f-item__ph img {
    width: 100%;
    border-radius: 8px;
  }

  .f-item__body__inner {
    width: 100%;
  }

  .btn--ghost {
    gap: 16px;
    padding: 8px 20px;
  }

  .btn--ghost svg {
    width: 24px;
    height: 24px;
  }

  .btn2 {
    width: 261px;
    padding: 8px 40px;
    border-radius: 4px;
  }

  .btn2 svg {
    width: 24px;
    height: 24px;
  }

  .btn2::before {
    height: calc(100% - 6px);
    top: 3px;
    width: 255px;
  }

  .effort {
    padding: 90px 0 0;
  }

  .effort__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .effort__item {
    padding: 20px 16px;
    width: 69.5%;
    margin: 0 auto;
    border-radius: 10px;
  }

  .effort__icon {
    width: 44%;
    margin-bottom: 10px;
  }
  .effort__item-title {
    margin-bottom: 10px;
  }

  .flow {
    padding: 90px 0;
  }

  .flow__list {
    width: 84%;
    padding-bottom: 60px;
  }

  .flow__step {
    flex-direction: column;
    gap: 20px;
  }

  .flow__icon {
    width: 140px;
  }

  .flow__body {
    width: 100%;
  }

  .flow__arrow {
    width: 100%;
  }

  .flow__body .btn {
    margin-top: 10px;
    padding: 8px 20px;
    gap: 16px;
  }

  .flow__body .btn svg {
    width: 24px;
    height: 24px;
  }

  .faq {
    padding: 90px 0;
  }

  .faq__item {
    padding: 20px 0;
  }

  .toggleIcon {
    width: 24px;
    height: 24px;
  }

  .faq__a {
    padding-top: 16px;
  }

  .cta {
    padding: 0 0 100px;
  }

  .cta__box {
    gap: 60px;
  }

  .cta__box img {
    max-width: 340px;
  }

  footer {
    padding: 40px 30px;
  }

  footer svg {
    width: 65px;
  }

  .ftr__inner {
    margin-top: 20px;
  }

  .ftr__inner img {
    width: 120px;
    margin-bottom: 47px;
  }

  .ftr__inner div {
    flex-direction: column;
    gap: 8px;
  }
}

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