@charset "UTF-8";
/* -----------------------------------------------
  Variables(Garden LP)
--------------------------------------------------*/
/* color(Figmaの変数に対応。ベタ塗り追加禁止・ここに定義してから使う) */
/* size */
/* media queries */
/* -----------------------------------------------
  Mixins(Garden LP)
  各partialは `@use "(../)../foundation/mixins" as *;` で
  変数とmixinをまとめて読み込む
--------------------------------------------------*/
/* media queries
  使い方 @include mq(sp){ ここに書く } */
/* form スタイルリセット */
/* flexbox */
/* 字詰め */
/**************************************************
  親テーマ(mdtemplate-base)のデザイントークン上書き

  本LPは 1rem = 10px(html 62.5%)基準で実装しているため、
  --font-size-root を 62.5% にし、親のremトークンを×1.6して
  再宣言する(親コンポーネント・CF7フォームの見た目を維持するため)。
***************************************************/
:root {
  --font-size-root: 62.5%;
  --color-bg: #fff;
  --color-text: #1F1A1B;
  --color-muted: #5B635A;
  --color-border: #E2E8E2;
  --color-primary: #17842F;
  --color-primary-contrast: #fff;
  --color-accent: #FBCB38;
  --font-base: "Noto Sans JP", sans-serif;
  --font-heading: "Noto Sans JP", sans-serif;
  --font-size-base: 1.6rem;
  --font-size-sm: 1.4rem;
  --font-size-lg: 1.8rem;
  --font-size-h1: 3.2rem;
  --font-size-h2: 2.4rem;
  --font-size-h3: 2rem;
  --font-size-h4: 1.8rem;
  --line-height-base: 1.5;
  --space-1: 0.4rem;
  --space-2: 0.8rem;
  --space-3: 1.2rem;
  --space-4: 1.6rem;
  --space-5: 2.4rem;
  --space-6: 3.2rem;
  --space-7: 4.8rem;
  --space-8: 6.4rem;
  --space-9: 9.6rem;
}

/**************************************************
  base(Garden LP)
  リセットの土台は親テーマの _reset.scss。ここではLP固有の
  ベーススタイルと、親との差分の上書きのみを書く。
***************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media screen and (max-width: 1024px) {
  body {
    overflow-x: clip;
  }
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
}
body, button, input, textarea, select {
  color: #1F1A1B;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.05em;
}

body {
  background: url("../img/hero-bg.png?v=2") center/cover no-repeat fixed #fff;
}
@media screen and (max-width: 1024px) {
  body {
    background-attachment: scroll;
    background-position: top center;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover, a:focus-visible {
  color: inherit;
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

.screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

/**************************************************
  header(フローティングピル型 Figma 2093:766)
***************************************************/
.l-header {
  position: fixed;
  top: 21px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  background: none;
  border-bottom: none;
}
.l-header__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 18px 40px;
  border-radius: 70px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.l-header__logo img {
  width: 146px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}
.l-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .l-header__pill {
    gap: 32px;
    padding: 14px 24px;
  }
  .l-header__nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__pill {
    gap: 12px;
    padding: 10px 14px;
  }
  .l-header__logo img {
    width: 110px;
    height: 28px;
  }
  .l-header__cta {
    gap: 8px;
  }
  .l-header__cta .c-btn--ghost {
    display: none;
  }
}

.l-wrapper {
  overflow: hidden;
}

/**************************************************
  SP固定フッターナビ(ウィンドウ下部に追従)
  ヘッダーで非表示にしたナビ4つ+資料請求のSP用導線
***************************************************/
.l-sp-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-sp-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 100;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #E2E8E2;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(31, 51, 36, 0.15);
  }
  .l-sp-nav a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .l-sp-nav a + a {
    border-left: 1px solid #E2E8E2;
  }
  .l-sp-nav__cv {
    background: #17842F;
    color: #fff;
  }
  .l-sp-nav__cv:hover, .l-sp-nav__cv:focus-visible {
    color: #fff;
    opacity: 1;
  }
}

/**************************************************
  button
***************************************************/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.3s, transform 0.15s ease, box-shadow 0.15s ease, background-color 0.3s, color 0.3s;
}
.c-btn--primary {
  background-color: #FBCB38;
  color: #1F1A1B;
  padding: 18px 32px;
  font-size: 1.6rem;
  box-shadow: 0 6px 7px rgba(217, 158, 13, 0.45), inset 0 -5px 8px rgba(209, 143, 0, 0.6), inset 0 8px 12px rgba(255, 255, 255, 0.4), inset 0 3px 2px rgba(255, 255, 255, 0.85);
}
.c-btn--primary:hover {
  opacity: 1;
  color: #1F1A1B;
  transform: translateY(3px);
  box-shadow: 0 2px 3px rgba(217, 158, 13, 0.35), inset 0 -2px 4px rgba(209, 143, 0, 0.5), inset 0 6px 9px rgba(255, 255, 255, 0.35), inset 0 2px 1.5px rgba(255, 255, 255, 0.75);
}
.c-btn--primary:active {
  transform: translateY(5px);
  box-shadow: 0 1px 1px rgba(217, 158, 13, 0.3), inset 0 -1px 2px rgba(209, 143, 0, 0.5), inset 0 5px 8px rgba(255, 255, 255, 0.3), inset 0 2px 1.5px rgba(255, 255, 255, 0.7);
}
.c-btn--ghost {
  background-color: #fff;
  border: 1px solid #17842F;
  color: #17842F;
  padding: 17px 43px;
  font-size: 1.5rem;
  line-height: 1.6;
}
.c-btn--ghost:hover {
  opacity: 1;
  background-color: #17842F;
  color: #fff;
}
.c-btn--md {
  padding: 12px 39px;
  font-size: 1.74rem;
}
.c-btn--md.c-btn--primary {
  box-shadow: 0 4.3px 5.7px rgba(217, 158, 13, 0.45), inset 0 -4.3px 6.5px rgba(209, 143, 0, 0.6), inset 0 6.5px 9.7px rgba(255, 255, 255, 0.4), inset 0 2.2px 1.6px rgba(255, 255, 255, 0.85);
}
.c-btn--md.c-btn--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 1.5px 2.5px rgba(217, 158, 13, 0.35), inset 0 -2px 3.5px rgba(209, 143, 0, 0.5), inset 0 5px 7.5px rgba(255, 255, 255, 0.35), inset 0 1.6px 1.2px rgba(255, 255, 255, 0.75);
}
.c-btn--md.c-btn--primary:active {
  transform: translateY(4px);
  box-shadow: 0 1px 1px rgba(217, 158, 13, 0.3), inset 0 -1px 2px rgba(209, 143, 0, 0.5), inset 0 4px 6px rgba(255, 255, 255, 0.3), inset 0 1.6px 1.2px rgba(255, 255, 255, 0.7);
}
.c-btn--sm {
  padding: 10px 20px;
  font-size: 1.3rem;
}
.c-btn--sm.c-btn--primary {
  box-shadow: 0 4px 4.6px rgba(217, 158, 13, 0.45), inset 0 -3px 5.2px rgba(209, 143, 0, 0.6), inset 0 5px 7.9px rgba(255, 255, 255, 0.4), inset 0 2px 1.5px rgba(255, 255, 255, 0.85);
}
.c-btn--sm.c-btn--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 1.5px 2px rgba(217, 158, 13, 0.35), inset 0 -1.5px 3px rgba(209, 143, 0, 0.5), inset 0 4px 6px rgba(255, 255, 255, 0.35), inset 0 1.5px 1.2px rgba(255, 255, 255, 0.75);
}
.c-btn--sm.c-btn--primary:active {
  transform: translateY(3px);
  box-shadow: 0 1px 1px rgba(217, 158, 13, 0.3), inset 0 -1px 2px rgba(209, 143, 0, 0.5), inset 0 3px 5px rgba(255, 255, 255, 0.3), inset 0 1.5px 1.2px rgba(255, 255, 255, 0.7);
}

/**************************************************
  top(LP本体 Figma 2093:2)
***************************************************/
/* -----------------------------------------------
  Hero(2093:5)
-------------------------------------------------- */
.p-hero-area {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}
.p-hero-area__deco-left {
  position: absolute;
  left: -100px;
  top: 880px;
  width: 515px;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-hero-area__deco-left {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-hero-area__deco-left {
    display: block;
    top: auto;
    bottom: 390px;
    left: -60px;
    width: 240px;
  }
}

.p-hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 162px 120px 80px;
}
.p-hero__leaf {
  position: absolute;
  left: -67px;
  top: -93px;
  width: 357px;
  z-index: -1;
  pointer-events: none;
}
.p-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 634px;
  flex-shrink: 0;
  text-align: left;
}
.p-hero__eyebrow {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.p-hero__title {
  margin-top: -10px;
  font-size: 9.16rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.92px;
  white-space: nowrap;
  text-shadow: 0 0 29px #fff, 0 0 124px rgba(255, 255, 255, 0.85);
}
.p-hero__title span {
  color: #17842F;
}
.p-hero__lead {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
}
.p-hero__lead strong {
  font-weight: 800;
}
.p-hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-hero__side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 584px;
}
.p-hero__mascot {
  position: absolute;
  right: -70px;
  bottom: 30px;
  width: 202px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-hero__mascot {
    display: none;
  }
}
.p-hero__disclaimer {
  background: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  padding: 13px 12px;
  font-family: "Inter", sans-serif;
  font-size: 1.34rem;
  line-height: 1.7;
  color: #5B635A;
  width: 560px;
  max-width: 100%;
}
.p-hero {
  /* --- 狭いPC(1025〜1439px): 固定幅をvw化して等比縮小(1440px基準: vw = px ÷ 14.4) --- */
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .p-hero {
    padding: 150px 8.33vw 70px;
  }
  .p-hero__copy {
    width: 44vw;
  }
  .p-hero__title {
    font-size: 6.36vw;
  }
  .p-hero__side {
    width: 40.5vw;
  }
  .p-hero__mascot {
    right: -40px;
    width: 14vw;
  }
  .p-hero__leaf {
    left: -4.6vw;
    top: -6.4vw;
    width: 24.8vw;
  }
}

/* -----------------------------------------------
  比較表カード(2093:30)
-------------------------------------------------- */
.p-compare {
  width: 560px;
  max-width: 100%;
  background: #fff;
  border: 1.2px solid #d8ded2;
  border-radius: 7px;
  box-shadow: 0 54px 110px -32px rgba(20, 45, 28, 0.42);
  overflow: hidden;
}
.p-compare__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 19px;
  background: #1c2b1f;
}
.p-compare__head-title {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fff;
}
.p-compare__head-badge {
  border: 1.2px solid #fff;
  padding: 5px 12px;
  font-family: "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  color: #fff;
}
.p-compare__row {
  display: grid;
  grid-template-columns: 142px 236px 1fr;
  align-items: stretch;
  min-height: 91px;
  border-bottom: 1.2px solid #E2E8E2;
}
.p-compare__row--top {
  min-height: 113px;
  border-bottom: 2.4px solid #17842F;
}
.p-compare__label {
  align-self: center;
  padding-left: 20px;
  font-family: "Inter", sans-serif;
  font-size: 1.78rem;
  font-weight: 600;
  color: #0F4A22;
}
.p-compare__garden {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: #F4F7F1;
  text-align: center;
}
.p-compare__other {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  text-align: center;
}
.p-compare__osusume {
  background: #FBCB38;
  border-radius: 999px;
  padding: 2px 12px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F4A22;
}
.p-compare__brand {
  font-family: "Inter", sans-serif;
  font-size: 2.95rem;
  font-weight: 900;
  line-height: 1;
  color: #17842F;
}
.p-compare__brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: #7e8a82;
}
.p-compare__other-title {
  font-family: "Inter", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
}
.p-compare__big {
  font-family: "Inter", sans-serif;
  font-size: 4.73rem;
  font-weight: 900;
  line-height: 0.75;
  color: #F70C0C;
}
.p-compare__big small {
  font-size: 3.2rem;
}
.p-compare__big--text {
  font-size: 3.23rem;
}
.p-compare__big-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.82rem;
  font-weight: 700;
}
.p-compare__val {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}
.p-compare__val small {
  font-size: 1.5rem;
}
.p-compare__val--text {
  font-size: 2rem;
}
.p-compare__val-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.92rem;
  font-weight: 600;
}
.p-compare__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 17px;
  background: #4CA538;
  font-family: "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.17px;
  color: #fff;
}
.p-compare__foot strong {
  font-size: 2.19rem;
  font-weight: 900;
  margin: 0 0.3em;
}
.p-compare {
  /* --- 狭いPC(1025〜1439px): 列幅・文字をvw化して等比縮小(1440px基準: vw = px ÷ 14.4) --- */
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .p-compare__head-title {
    font-size: 1.39vw;
  }
  .p-compare__head-badge {
    font-size: 0.93vw;
  }
  .p-compare__row {
    grid-template-columns: 9.9vw 16.4vw 1fr;
    min-height: 6.32vw;
  }
  .p-compare__row--top {
    min-height: 7.85vw;
  }
  .p-compare__label {
    padding-left: 1.4vw;
    font-size: 1.24vw;
  }
  .p-compare__brand {
    font-size: 2.05vw;
  }
  .p-compare__other-title {
    font-size: 1.46vw;
  }
  .p-compare__big {
    font-size: 3.28vw;
  }
  .p-compare__big small {
    font-size: 2.22vw;
  }
  .p-compare__big--text {
    font-size: 2.24vw;
  }
  .p-compare__big-sub {
    font-size: 1.26vw;
  }
  .p-compare__val {
    font-size: 1.39vw;
  }
  .p-compare__val small {
    font-size: 1.04vw;
  }
  .p-compare__val--text {
    font-size: 1.39vw;
  }
  .p-compare__val-sub {
    font-size: 1.33vw;
  }
  .p-compare__foot {
    font-size: 1.18vw;
  }
  .p-compare__foot strong {
    font-size: 1.52vw;
  }
}

/* -----------------------------------------------
  SP(暫定: PC版デザインのみのため簡易スタック)
-------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .p-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    padding: 140px 20px 60px;
  }
  .p-hero__leaf {
    display: none;
  }
  .p-hero__copy {
    max-width: 100%;
    margin-inline: auto;
    align-items: stretch;
  }
  .p-hero__title {
    font-size: 5.6rem;
    white-space: normal;
  }
  .p-hero__cta {
    flex-wrap: wrap;
  }
  .p-hero__side {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 5rem;
  }
  .p-hero__leaf {
    display: block;
    top: -65px;
    left: -50px;
    width: 250px;
  }
  .p-hero__mascot {
    display: block;
    right: -60px;
    bottom: 59px;
    width: 150px;
  }
  .p-hero__cta {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .p-hero__cta .c-btn--primary {
    padding: 16px 20px;
  }
  .p-hero__cta .c-btn--ghost {
    padding: 15px 22px;
  }
}

@media screen and (max-width: 767px) {
  .p-compare__head {
    padding: 12px 14px;
  }
  .p-compare__head-title {
    font-size: 1.6rem;
  }
  .p-compare__head-badge {
    padding: 4px 8px;
    font-size: 1.1rem;
  }
  .p-compare__row {
    grid-template-columns: 86px 1fr 1fr;
    min-height: 76px;
  }
  .p-compare__row--top {
    min-height: 96px;
  }
  .p-compare__label {
    padding-left: 12px;
    font-size: 1.3rem;
  }
  .p-compare__brand {
    font-size: 2rem;
  }
  .p-compare__other-title {
    font-size: 1.6rem;
  }
  .p-compare__big {
    font-size: 3.2rem;
  }
  .p-compare__big small {
    font-size: 2.2rem;
  }
  .p-compare__big--text {
    font-size: 2.2rem;
  }
  .p-compare__big-sub {
    font-size: 1.4rem;
  }
  .p-compare__val {
    font-size: 1.6rem;
  }
  .p-compare__val small {
    font-size: 1.2rem;
  }
  .p-compare__val-sub {
    font-size: 1.5rem;
  }
  .p-compare__foot {
    font-size: 1.3rem;
  }
  .p-compare__foot strong {
    font-size: 1.7rem;
  }
}

/**************************************************
  チャットデモ(Figma v3 2142:102)
  ノートPCモック+管理画面(2186:2)のはめ込み
***************************************************/
.p-chat-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 120px 20px 0;
}
.p-chat-demo__title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.26;
  text-align: center;
}
.p-chat-demo__title span {
  font-size: 4.2rem;
  color: #4CA538;
}
.p-chat-demo__img {
  width: 965px;
  max-width: 100%;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .p-chat-demo {
    padding: 60px 20px 0;
    gap: 32px;
  }
  .p-chat-demo__title {
    font-size: 2.2rem;
  }
  .p-chat-demo__title span {
    font-size: 2.8rem;
  }
}

/**************************************************
  Problem(Figma v3 2142:132)中央揃え1カラム
***************************************************/
.p-problem {
  padding: 300px 120px 180px;
}
.p-problem__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.p-problem__title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.55;
}
.p-problem__title span {
  color: #4CA538;
}
.p-problem__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.p-problem__catch {
  font-size: 2.7rem;
  font-weight: 900;
  color: #17842F;
}
.p-problem__text {
  max-width: 680px;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-problem {
    padding: 120px 20px 80px;
  }
  .p-problem__inner {
    align-items: stretch;
  }
  .p-problem__body {
    align-items: stretch;
  }
  .p-problem__title {
    font-size: 2.8rem;
  }
  .p-problem__catch {
    font-size: 2.2rem;
  }
}

/**************************************************
  Features(Figma 2093:149)
***************************************************/
.p-features {
  position: relative;
  background: #fff;
  border-radius: 150px;
  padding: 120px 0;
  overflow-x: clip;
  overflow-y: visible;
}
.p-features__deco-right {
  position: absolute;
  top: -110px;
  right: -60px;
  width: 373px;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-features__deco-right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-features__deco-right {
    display: block;
    top: -60px;
    right: -30px;
    width: 200px;
  }
}
.p-features__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  text-align: center;
}
.p-features__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  color: #4CA538;
}
.p-features__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-features__title {
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.3;
}
.p-features__title .is-green {
  color: #17842F;
}
.p-features__title .is-green em {
  font-size: 6.4rem;
  font-style: normal;
}
.p-features__lead {
  font-size: 1.5rem;
  line-height: 1.95;
}
@media screen and (max-width: 1024px) {
  .p-features {
    border-radius: 60px;
    padding: 60px 0;
  }
  .p-features__intro {
    align-items: stretch;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .p-features__eyebrow {
    justify-content: center;
  }
  .p-features__title {
    font-size: 3rem;
  }
  .p-features__title .is-green em {
    font-size: 3.6rem;
  }
}

/* -----------------------------------------------
  各機能パネル(白・片側角丸150px)
-------------------------------------------------- */
.p-feature {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  width: 95%;
  padding: 120px 100px;
  background: #fff;
}
.p-feature + .p-feature {
  margin-top: 60px;
}
.p-feature--right {
  margin-left: auto;
  border-radius: 150px 0 0 150px;
  box-shadow: inset 8px 8px 100px rgba(201, 217, 232, 0.8);
}
.p-feature--left {
  margin-right: auto;
  border-radius: 0 150px 150px 0;
  box-shadow: inset -8px -12px 100px rgba(201, 217, 232, 0.8);
}
.p-feature--col {
  flex-direction: column;
  align-items: center;
}
.p-feature__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.p-feature__num {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #F4F7F1;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  color: #4CA538;
}
.p-feature__num span {
  font-size: 2.2rem;
  letter-spacing: 0;
}
.p-feature__num::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 78px;
  height: 84px;
  background: url(../img/deco-sprout.png?v=3) no-repeat center/contain;
  transform: translateY(-50%) rotate(8.5deg);
  pointer-events: none;
}
.p-feature__num.is-animate::after {
  opacity: 0;
  transform: translateY(-50%) rotate(-14deg);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}
.p-feature__num.is-animate.is-inview::after {
  opacity: 1;
  transform: translateY(-50%) rotate(8.5deg);
}
@media (prefers-reduced-motion: reduce) {
  .p-feature__num.is-animate::after {
    opacity: 1;
    transform: translateY(-50%) rotate(8.5deg);
    transition: none;
  }
}
.p-feature__heading {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.6;
  white-space: nowrap;
  text-align: center;
}
.p-feature__heading span {
  color: #17842F;
}
.p-feature__heading--md {
  font-size: 4rem;
}
.p-feature__heading.is-animate {
  opacity: 0;
}
.p-feature__heading.is-animate.is-inview {
  animation: heading-pop 0.5s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
  .p-feature__heading.is-animate {
    opacity: 1;
    animation: none;
  }
}
.p-feature__figure {
  position: relative;
  margin-top: 20px;
}
.p-feature__figure--f3 {
  padding: 0 90px 40px;
}
.p-feature__mascot {
  width: 202px;
  height: auto;
}
.p-feature__mascot--wide {
  width: 449px;
}
.p-feature__mascot--f3 {
  width: 377px;
  max-width: 100%;
}
.p-feature__deco {
  position: absolute;
  pointer-events: none;
}
.p-feature__deco--trees {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 357px;
}
@media screen and (max-width: 767px) {
  .p-feature__deco--trees {
    top: -21px;
    width: 50%;
  }
}
.p-feature__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  min-width: 0;
}
.p-feature__desc {
  font-size: 1.6rem;
  line-height: 1.95;
}
.p-feature__desc--sm {
  font-size: 1.46rem;
}
.p-feature {
  /* --- F2: ノートPC(果樹園画面)+ 凡例の2カラム --- */
}
.p-feature__split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  width: 100%;
}
.p-feature__laptop {
  flex-shrink: 0;
  width: 606px;
  margin-left: -89px;
  margin-right: -30px;
}
.p-feature__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.p-feature__wide-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #E2E8E2;
  text-align: center;
}
.p-feature__wide-legend-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4CA538;
}
.p-feature__wide-legend-body {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5B635A;
}
.p-feature {
  /* --- F1: ミニチャットカード + 写真 --- */
}
.p-feature__demo {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-left: 90px;
}
.p-feature__chat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 26px 26px 22px;
  background: #fff;
  border: 1px solid #E2E8E2;
  border-radius: 18px;
  box-shadow: 0 14px 36px -6px rgba(31, 51, 36, 0.08);
}
.p-feature__chat-img {
  display: block;
  width: 100%;
  height: auto;
}
.p-feature__demo-photo {
  position: absolute;
  left: -92px;
  top: -23px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-feature {
  /* --- F1: 箇条書きカード --- */
}
.p-feature__bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-feature__bullets--cols {
  flex-direction: row;
  align-items: stretch;
}
.p-feature__bullets--cols .p-feature__bullet {
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding: 20px;
}
.p-feature__bullets--cols .p-feature__bullet-text {
  align-items: center;
}
.p-feature__bullets--cols .p-feature__bullet-title {
  line-height: 1.3;
  text-align: center;
}
.p-feature__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 26px;
  background: #fff;
  border: 1px solid #E3EBF6;
  border-radius: 10px;
}
.p-feature__bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #F1F5F9;
  border-radius: 50%;
}
.p-feature__bullet-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-feature__bullet-title {
  font-size: 2rem;
  font-weight: 700;
}
.p-feature__bullet-body {
  font-size: 1.3rem;
  line-height: 1.85;
  color: #5B635A;
}
.p-feature {
  /* --- F1: 読み込めるドキュメント(v3はテキスト表記) --- */
}
.p-feature__docs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-feature__docs-label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.72px;
}
.p-feature__docs-list {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #5B635A;
  text-align: center;
}
.p-feature {
  /* --- F2: 解説カード --- */
}
.p-feature__explainers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-feature__explainers--cols {
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}
.p-feature__explainers--cols .p-feature__explainer {
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.p-feature__explainers--cols .p-feature__explainer-text {
  align-items: center;
}
.p-feature__explainers--cols .p-feature__explainer-title {
  text-align: center;
  width: 100%;
}
.p-feature__explainer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 24px;
  background: #F1F5F9;
  border-radius: 14px;
}
.p-feature__explainer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
}
.p-feature__explainer-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-feature__explainer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4CA538;
}
.p-feature__explainer-body {
  font-size: 1.5rem;
  line-height: 1.9;
}
.p-feature__legends {
  display: flex;
}
.p-feature__legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 27px 14px;
  border-right: 1px solid #E2E8E2;
  text-align: center;
}
.p-feature__legend:first-child {
  border-left: 1px solid #E2E8E2;
}
.p-feature__legend-pill {
  padding: 5px 10px;
  border: 1px solid #73BE3F;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #73BE3F;
}
.p-feature__legend-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-feature__legend-body {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5B635A;
  text-align: left;
}
.p-feature {
  /* --- F3: 写真 + タイムライン --- */
}
.p-feature__photo {
  border-radius: 15px;
  overflow: hidden;
}
.p-feature__photo img {
  width: 100%;
  height: auto;
}
.p-feature__timeline {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 26px;
  border-left: 2px solid #E3EBF6;
}
.p-feature__timeline--cols {
  flex-direction: row;
  gap: 0;
  padding-left: 0;
  border-left: none;
}
.p-feature__timeline--cols .p-feature__tl-item {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
}
.p-feature__timeline--cols .p-feature__tl-item + .p-feature__tl-item {
  border-left: 1px solid #E2E8E2;
}
.p-feature__timeline--cols .p-feature__tl-label {
  text-align: center;
  line-height: 1.4;
}
.p-feature__timeline--cols .p-feature__tl-title {
  text-align: center;
  line-height: 1.4;
  font-size: 1.7rem;
  word-break: auto-phrase;
}
.p-feature__timeline--cols .p-feature__tags {
  flex-wrap: wrap;
}
.p-feature__timeline--cols .p-feature__tags li {
  white-space: nowrap;
}
.p-feature__tl-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-feature__tl-label {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #17842F;
}
.p-feature__tl-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.p-feature__tl-body {
  font-size: 1.4rem;
  line-height: 1.85;
}
.p-feature__tags {
  display: flex;
  gap: 8px;
  padding-top: 2px;
}
.p-feature__tags li {
  padding: 4px 10px;
  background: #F1F5F9;
  border-radius: 99px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #5B635A;
}
.p-feature__switch-note {
  padding: 14px 18px;
  background: #E3EBF6;
  border-radius: 5px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.p-feature__minis {
  display: flex;
  gap: 14px;
}
.p-feature__minis li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #4CA538;
}
.p-feature__minis--stats, .p-feature__minis--head {
  width: 100%;
  margin-top: 20px;
}
.p-feature__minis--head li {
  padding: 12px 8px;
}
.p-feature__minis--head .p-feature__mini-sub {
  line-height: 1.3;
  text-align: center;
  word-break: auto-phrase;
}
.p-feature__minis--stats {
  gap: 14px;
}
.p-feature__minis--stats li {
  padding: 12px 8px;
}
.p-feature__minis--stats .p-feature__mini-title {
  font-size: 1.7rem;
}
.p-feature__minis--stats .p-feature__mini-title small {
  font-size: 1.3rem;
}
.p-feature__minis--stats .p-feature__mini-sub {
  line-height: 1.3;
  text-align: center;
}
.p-feature__mini-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4CA538;
}
.p-feature__mini-sub {
  font-size: 1.1rem;
  color: #5B635A;
}
.p-feature {
  /* --- 狭いPC(1025〜1439px): 余白と見出しを縮めて1カラム落ちせず収める --- */
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .p-feature {
    gap: 32px;
    padding: 80px 48px;
  }
  .p-feature__heading {
    font-size: 3.4rem;
  }
  .p-feature__heading--md {
    font-size: 3.2rem;
  }
  .p-feature__figure--f3 {
    padding: 0 40px 30px;
  }
  .p-feature__bullets--cols .p-feature__bullet {
    padding: 16px 8px;
  }
  .p-feature__bullet-title {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
}
.p-feature {
  /* --- SP(暫定) --- */
}
@media screen and (max-width: 1024px) {
  .p-feature {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 60px 24px;
    max-width: calc(100% - 20px);
  }
  .p-feature--right, .p-feature--left {
    border-radius: 60px;
    margin: 0 auto;
  }
  .p-feature--right {
    box-shadow: inset 5px 5px 40px rgba(201, 217, 232, 0.5);
  }
  .p-feature--left {
    box-shadow: inset -5px -6px 40px rgba(201, 217, 232, 0.5);
  }
  .p-feature + .p-feature {
    margin-top: 40px;
  }
  .p-feature__head {
    width: 100%;
    order: -1;
  }
  .p-feature__heading {
    max-width: 100%;
    font-size: 2.8rem;
    white-space: normal;
  }
  .p-feature__heading--md {
    font-size: 2.3rem;
  }
  .p-feature__figure--f3 {
    padding: 0 20px 20px;
  }
  .p-feature__mascot--wide {
    width: 100%;
    max-width: 449px;
  }
  .p-feature__split {
    flex-direction: column;
    gap: 24px;
  }
  .p-feature__laptop {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .p-feature__demo {
    justify-content: center;
    padding-left: 0;
    padding-top: 60px;
  }
  .p-feature__demo-photo {
    left: -10px;
    top: -50px;
    width: 100px;
    height: 100px;
  }
  .p-feature__bullets--cols {
    flex-direction: column;
  }
  .p-feature__explainers--cols {
    flex-direction: column;
  }
  .p-feature__timeline--cols {
    flex-direction: column;
    gap: 24px;
  }
  .p-feature__timeline--cols .p-feature__tl-item {
    padding: 0;
  }
  .p-feature__timeline--cols .p-feature__tl-item + .p-feature__tl-item {
    border-left: none;
    border-top: 1px solid #E2E8E2;
    padding-top: 20px;
  }
  .p-feature__docs {
    align-items: stretch;
  }
  .p-feature__docs-label {
    text-align: center;
  }
  .p-feature__stats {
    flex-wrap: wrap;
  }
  .p-feature__stats li {
    flex: 1 1 40%;
    padding: 10px 0;
  }
  .p-feature__legends {
    flex-wrap: wrap;
  }
  .p-feature__legends li,
  .p-feature__legends .p-feature__legend {
    flex: 1 1 45%;
  }
  .p-feature__minis {
    flex-wrap: wrap;
  }
  .p-feature__minis li {
    flex: 1 1 calc(50% - 7px);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__tags {
    justify-content: center;
  }
  .p-feature__wide-legend-body {
    text-align: left;
  }
  .p-feature__legends {
    flex-direction: column;
  }
  .p-feature__legend {
    border-right: none;
    border-bottom: 1px solid #E2E8E2;
  }
  .p-feature__legend:first-child {
    border-left: none;
    border-top: 1px solid #E2E8E2;
  }
  .p-feature__legend:last-child {
    border-bottom: none;
  }
}

/* 機能見出しのポヨン(オーバーシュート1回だけ) */
@keyframes heading-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/**************************************************
  Security(Figma v3 2142:392 / ゴールド版 2144:1076)
***************************************************/
.p-security {
  padding: 230px 120px;
}
.p-security__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1130px;
  margin: 0 auto;
}
.p-security__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 434px;
}
.p-security__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-security__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-security__title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.4;
  white-space: nowrap;
}
.p-security__lead {
  font-size: 1.4rem;
  line-height: 1.95;
}
.p-security__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-security__certs li {
  padding: 7px 14px;
  background: linear-gradient(-14deg, #D4A017 14.6%, #D4A017 51.4%, #F4E4A6 85.4%);
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.p-security__grid-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.p-security__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 312px));
  gap: 40px 32px;
}
.p-security__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
}
.p-security__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 900;
  color: #D4A017;
}
.p-security__item-title img {
  width: 30px;
  height: 30px;
}
.p-security__item-body {
  font-size: 1.3rem;
  line-height: 1.9;
}
.p-security__brand {
  order: -1;
  padding: 6px;
  background: linear-gradient(111deg, #17842F 7.77%, #86c943 95.14%);
  border-radius: 8px;
}
.p-security__brand span {
  display: flex;
  padding: 11px 14px;
  background: #fff;
  border-radius: 6px;
}
.p-security__brand img {
  width: 162px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-security {
  /* --- 狭いPC(1025〜1439px): 見出しをvw化しカード2列が潰れないようにする --- */
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .p-security {
    padding: 230px 48px;
  }
  .p-security__copy {
    width: auto;
  }
  .p-security__title {
    font-size: 3.4vw;
  }
  .p-security__item-title {
    font-size: 1.8rem;
  }
}
.p-security__mascot {
  position: absolute;
  left: 350px;
  top: calc(100% + 29px);
  width: 226px;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .p-security {
    padding: 80px 20px;
  }
  .p-security__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .p-security__copy {
    width: 100%;
  }
  .p-security__title {
    font-size: 3.2rem;
    white-space: normal;
  }
  .p-security__grid-wrap {
    max-width: 100%;
  }
  .p-security__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-security__brand {
    align-self: center;
    display: inline-block;
    margin: 0;
  }
  .p-security__mascot {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-security__eyebrow {
    justify-content: center;
  }
  .p-security__title {
    text-align: center;
  }
  .p-security__lead {
    text-align: center;
  }
  .p-security__grid {
    gap: 10px;
  }
  .p-security__certs {
    justify-content: center;
  }
  .p-security__brand {
    order: -1;
    margin: 0;
  }
  .p-security__mascot {
    display: block;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    width: 80px;
  }
}

/**************************************************
  Numbers(Figma 2093:456)
***************************************************/
.p-numbers {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: #fff;
  border-radius: 150px 150px 0 0;
}
.p-numbers__deco {
  position: absolute;
  left: -20px;
  top: 90px;
  width: 259px;
  pointer-events: none;
}
.p-numbers__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.p-numbers__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-numbers__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-numbers__title {
  font-size: 3.6rem;
  font-weight: 900;
}
.p-numbers__note {
  font-size: 1.4rem;
}
.p-numbers__grid {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}
.p-numbers__grid.is-animate .p-numbers__metric {
  opacity: 0;
}
.p-numbers__grid.is-animate.is-inview .p-numbers__metric {
  animation: metric-rise 0.6s ease forwards;
}
.p-numbers__grid.is-animate.is-inview .p-numbers__metric:nth-child(2) {
  animation-delay: 0.15s;
}
.p-numbers__grid.is-animate.is-inview .p-numbers__metric:nth-child(3) {
  animation-delay: 0.3s;
}
.p-numbers__grid.is-animate.is-inview .p-numbers__metric:nth-child(4) {
  animation-delay: 0.45s;
}
@media (prefers-reduced-motion: reduce) {
  .p-numbers__grid.is-animate .p-numbers__metric {
    opacity: 1;
    animation: none;
  }
}
.p-numbers__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  padding-bottom: 20px;
  background: #F1F5F9;
  border-radius: 16px;
  overflow: hidden;
}
.p-numbers__metric-head {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 7px 0;
  background: #73BE3F;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.p-numbers__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.p-numbers__before {
  font-family: "Inter", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}
.p-numbers__before small {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-numbers__arrow {
  width: 11px;
  height: 17px;
  background: #4CA538;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-numbers__after {
  font-family: "Inter", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #F70C0C;
}
.p-numbers__after small {
  font-size: 2rem;
  font-weight: 700;
}
.p-numbers {
  /* --- 狭いPC(1025〜1439px): 4カラムのまま収まるよう数値を縮小 --- */
}
@media screen and (min-width: 1025px) and (max-width: 1439px) {
  .p-numbers {
    padding: 80px 48px;
  }
  .p-numbers__grid {
    gap: 24px;
  }
  .p-numbers__values {
    white-space: nowrap;
  }
  .p-numbers__before {
    font-size: 2rem;
  }
  .p-numbers__before small {
    font-size: 1.4rem;
  }
  .p-numbers__after {
    font-size: 3rem;
  }
  .p-numbers__after small {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-numbers {
    padding: 60px 20px;
    border-radius: 60px 60px 0 0;
  }
  .p-numbers__deco {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-numbers__deco {
    display: block;
    left: -20px;
    top: -20px;
    width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .p-numbers__grid {
    flex-wrap: wrap;
  }
  .p-numbers__metric {
    flex: 1 1 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-numbers__grid {
    gap: 20px;
  }
  .p-numbers__metric {
    flex: 1 1 100%;
  }
}

/* Numbers指標の下からフェードイン */
@keyframes metric-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**************************************************
  Doc Request(Figma 2093:497)
***************************************************/
.p-doc-request {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  padding: 61px 120px;
  background: #0F4A22;
}
.p-doc-request__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}
.p-doc-request__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3.9px;
}
.p-doc-request__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.58;
}
.p-doc-request__lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.95;
}
.p-doc-request__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 440px;
  max-width: 100%;
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.2);
}
.p-doc-request__mascot {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 102px;
  z-index: 1;
}
.p-doc-request__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.p-doc-request__info-title {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-doc-request__info-sub {
  font-size: 1.15rem;
  color: #5B635A;
}
.p-doc-request__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 16px 0;
  background: linear-gradient(134deg, #17842F 7.77%, #86c943 95.14%);
  border: 1px solid #4CA538;
  border-radius: 58px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.p-doc-request__btn:hover {
  color: #fff;
}
.p-doc-request__btn span {
  padding: 2px 5px;
  border: 1px solid #fff;
  border-radius: 35px;
  font-size: 1.2rem;
  font-weight: 500;
}
.p-doc-request__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 6px;
}
.p-doc-request__tel-label {
  font-size: 1.1rem;
}
.p-doc-request__tel-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #17842F;
}
.p-doc-request__tel-hours {
  font-size: 1.1rem;
  color: #5B635A;
}
@media screen and (max-width: 1024px) {
  .p-doc-request {
    padding: 60px 20px;
    gap: 100px;
  }
  .p-doc-request__copy {
    width: 100%;
    align-items: stretch;
  }
  .p-doc-request__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-doc-request__lead {
    text-align: left;
  }
}

/**************************************************
  利用者の声(Figma 2093:517 / Voices 2093:518)
***************************************************/
.p-voices {
  position: relative;
  background: #fff;
  overflow-x: clip;
}
.p-voices__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 110px 120px;
  background: #F4F7F1;
  border-radius: 0 0 150px 150px;
}
.p-voices__mascot {
  position: absolute;
  left: max(120px, 50% - 600px);
  top: 108px;
  width: 157px;
  pointer-events: none;
}
.p-voices__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.p-voices__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-voices__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-voices__title {
  font-size: 3.4rem;
  font-weight: 900;
  text-align: center;
}
.p-voices__cards {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  max-width: 1200px;
}
.p-voices__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-width: 0;
  padding: 30px 32px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px -6px rgba(31, 51, 36, 0.07);
}
.p-voices__photo {
  border-radius: 10px;
  overflow: hidden;
}
.p-voices__photo img {
  width: 100%;
  height: 237px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voices__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.p-voices__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-voices__person-title {
  font-size: 1.35rem;
  font-weight: 700;
}
.p-voices__person-sub {
  font-size: 1.15rem;
  color: #5B635A;
}
.p-voices__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FBCB38;
  white-space: nowrap;
}
.p-voices__stars span {
  font-family: "Roboto Condensed", "Inter", sans-serif;
  color: #5B635A;
}
.p-voices__change {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: #F4F7F1;
  border-radius: 10px;
}
.p-voices__change-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #17842F;
}
.p-voices__change-body {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-voices {
  /* --- 導入前の課題 / 実際の使い方 / セキュリティについて --- */
}
.p-voices__acc {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E2E8E2;
}
.p-voices__acc-item {
  border-bottom: 1px solid #E2E8E2;
}
.p-voices__acc-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
}
.p-voices__acc-icon {
  display: flex;
  flex-shrink: 0;
}
.p-voices__acc-icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-voices__acc-toggle {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #5B635A;
}
.p-voices__acc-toggle::before {
  content: "+";
}
.p-voices__acc-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.p-voices__acc-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #5B635A;
}
.p-voices__acc-item.is-open .p-voices__acc-a {
  grid-template-rows: 1fr;
}
.p-voices__acc-item.is-open .p-voices__acc-inner {
  padding-bottom: 16px;
}
.p-voices__acc-item.is-open .p-voices__acc-toggle::before {
  content: "−";
}
.p-voices__note {
  font-size: 1.15rem;
  color: #5B635A;
  text-align: center;
}
.p-voices__branch {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 308px;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-voices__panel {
    padding: 60px 20px;
    border-radius: 0 0 60px 60px;
  }
  .p-voices__intro {
    width: 100%;
    align-items: stretch;
  }
  .p-voices__title {
    font-size: 2.6rem;
  }
  .p-voices__mascot {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-voices__eyebrow {
    justify-content: center;
  }
  .p-voices__card {
    position: relative;
  }
  .p-voices__mascot {
    display: block;
    top: -87px;
    left: 10px;
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .p-voices__cards {
    flex-direction: column;
    align-items: stretch;
  }
  .p-voices__branch {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-voices__branch {
    display: block;
    width: 180px;
    right: -20px;
  }
}

/**************************************************
  Pricing(Figma 2093:555)+ CTAバンド(2102:99)
***************************************************/
.p-pricing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px 220px;
  background: #fff;
}
.p-pricing__mascot {
  position: absolute;
  top: -65px;
  left: 10px;
  width: 116px;
  pointer-events: none;
}
.p-pricing__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.p-pricing__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-pricing__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-pricing__title {
  font-size: 3.4rem;
  font-weight: 900;
}
.p-pricing__lead {
  font-size: 1.4rem;
}
.p-pricing__cards {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}
.p-pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  padding: 30px 32px;
  border-radius: 16px;
}
.p-pricing__card--green {
  background: #F4F7F1;
  border: 1px solid #E2E8E2;
}
.p-pricing__card--white {
  background: #fff;
  border: 1.5px solid #E2E8E2;
}
.p-pricing__card-title {
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #4CA538;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.08px;
  color: #4CA538;
}
.p-pricing__card-title em {
  font-size: 2.6rem;
  font-style: normal;
}
.p-pricing__card-title--forest {
  border-color: #17842F;
  color: #17842F;
}
.p-pricing__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.p-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  color: #4CA538;
}
.p-pricing__price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.p-pricing__price--forest {
  color: #17842F;
}
.p-pricing__price-sub {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.p-pricing__bullets {
  width: 100%;
  margin-top: 6px;
  padding: 10px 0;
  border-top: 1px solid #E3EBF6;
  list-style: disc;
  padding-left: 20px;
}
.p-pricing__bullets li {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2.3;
}
.p-pricing__note {
  font-size: 1.15rem;
  color: #5B635A;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-pricing {
    padding: 60px 20px;
  }
  .p-pricing__mascot {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-pricing__eyebrow {
    justify-content: center;
  }
  .p-pricing__mascot {
    display: block;
    top: -39px;
    left: 10px;
    width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .p-pricing__intro {
    width: 100%;
    align-items: stretch;
  }
  .p-pricing__title {
    font-size: 2.6rem;
  }
  .p-pricing__cards {
    flex-direction: column;
  }
  .p-pricing__card {
    padding: 24px 20px;
  }
}

/* -----------------------------------------------
  CTAバンド(2102:99)
-------------------------------------------------- */
.p-cta-band {
  display: flex;
  justify-content: center;
  background: #fff;
}
.p-cta-band--in-features {
  background: transparent;
  margin-top: 60px;
  width: 100%;
}
.p-cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 90%;
  max-width: 100%;
  padding: 64px 20px;
  background: linear-gradient(154deg, #17852f 11.11%, #2d9e38 51.85%, #59b23c 85.19%);
  border-radius: 40px;
  color: #fff;
  text-align: center;
}
.p-cta-band__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4.2px;
}
.p-cta-band__title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
}
.p-cta-band__lead {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.95;
}
.p-cta-band__row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 8px;
}
.p-cta-band__btn-wrap {
  position: relative;
  padding-left: 80px;
}
.p-cta-band__mascot {
  position: absolute;
  left: 0;
  bottom: -43px;
  width: 104px;
  pointer-events: none;
}
.p-cta-band__mascot.is-animate {
  transform: translateX(-10px);
  transition: transform 0.6s ease;
}
.p-cta-band__mascot.is-animate.is-inview {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .p-cta-band__mascot.is-animate {
    transform: none;
    transition: none;
  }
}
.p-cta-band__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.p-cta-band__tel-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-cta-band__tel-hours {
  font-size: 1.1rem;
}
@media screen and (max-width: 1024px) {
  .p-cta-band__inner {
    border-radius: 24px;
    padding: 48px 20px;
  }
  .p-cta-band__title {
    font-size: 2.4rem;
  }
  .p-cta-band__lead {
    font-size: 1.3rem;
  }
  .p-cta-band__row {
    flex-direction: column;
    gap: 20px;
  }
  .p-cta-band__btn-wrap {
    padding-left: 60px;
  }
  .p-cta-band__mascot {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-band__title {
    font-size: 2.8rem;
  }
  .p-cta-band__lead {
    text-align: left;
  }
  .p-cta-band__btn-wrap {
    padding-left: 0;
  }
  .p-cta-band__mascot {
    bottom: -30px;
  }
  .p-cta-band__mascot.is-animate {
    transform: translateX(calc(-60% - 10px));
  }
  .p-cta-band__mascot.is-animate.is-inview {
    transform: translateX(-60%);
  }
}

/**************************************************
  導入の流れ(Figma 2093:609)
***************************************************/
.p-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 100px 120px;
  background: #fff;
}
.p-steps__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-steps__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-steps__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-steps__title {
  font-size: 3.6rem;
  font-weight: 900;
}
.p-steps__lead {
  font-size: 1.4rem;
}
.p-steps__mascot {
  position: absolute;
  right: 144px;
  top: 202px;
  width: 116px;
  z-index: 1;
  pointer-events: none;
}
.p-steps__row {
  display: flex;
  border: 1px solid #E3EBF6;
  border-radius: 13px;
  overflow: hidden;
}
.p-steps__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  padding: 30px;
}
.p-steps__step--1 {
  background: #fff;
}
.p-steps__step--2 {
  background: #F1F5F9;
  padding-left: 60px;
}
.p-steps__step--3 {
  background: #E3EBF6;
  padding-left: 45px;
}
.p-steps__arrow {
  display: none;
}
.p-steps__step--2::before, .p-steps__step--3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 190px;
  max-height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  pointer-events: none;
}
.p-steps__step--2::before {
  background: #fefffd;
}
.p-steps__step--3::before {
  background: #F1F5F9;
}
.p-steps__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(98deg, #17842F 7.77%, #86c943 95.14%);
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.p-steps__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-steps__step-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
}
.p-steps__step-body {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #5B635A;
}
@media screen and (max-width: 1024px) {
  .p-steps {
    padding: 60px 20px;
  }
  .p-steps__mascot {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .p-steps__eyebrow {
    justify-content: center;
  }
  .p-steps__mascot {
    display: block;
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .p-steps__row {
    flex-direction: column;
  }
  .p-steps__arrow {
    display: none;
  }
  .p-steps__step--2, .p-steps__step--3 {
    padding-left: 30px;
  }
  .p-steps__step--2::before, .p-steps__step--3::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-steps__title {
    font-size: 2.8rem;
    text-align: center;
  }
  .p-steps__step--2, .p-steps__step--3 {
    padding-top: 44px;
  }
  .p-steps__step--2::before, .p-steps__step--3::before {
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 33px;
    max-height: none;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
}

/**************************************************
  FAQ(Figma 2093:647 / FAQ 2093:648)
***************************************************/
.p-faq {
  background: #fff;
  max-width: none;
  margin-inline: 0;
}
.p-faq__panel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 110px 120px;
  background: #F4F7F1;
  border-radius: 150px 150px 0 0;
}
.p-faq__deco {
  position: absolute;
  pointer-events: none;
}
.p-faq__deco--1 {
  top: -55px;
  left: -50px;
  width: 315px;
}
.p-faq__deco--2 {
  right: 0;
  bottom: 0;
  width: 134px;
}
@media screen and (max-width: 1024px) {
  .p-faq__deco {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__deco {
    display: block;
  }
  .p-faq__deco--1 {
    top: -35px;
    left: -40px;
    width: 200px;
  }
  .p-faq__deco--2 {
    width: 100px;
  }
}
.p-faq__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 340px;
}
.p-faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4CA538;
}
.p-faq__eyebrow img {
  width: 26px;
  height: 27px;
}
.p-faq__title {
  font-size: 3.4rem;
  font-weight: 900;
}
.p-faq__lead {
  font-size: 1.4rem;
  line-height: 1.95;
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.p-faq__item {
  padding: 20px 24px;
  background: #fff;
  border-radius: 10px;
}
.p-faq__q {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 700;
  cursor: pointer;
}
.p-faq__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #4CA538;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.p-faq__toggle {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 500;
  color: #5B635A;
  transition: transform 0.3s;
}
.p-faq__toggle::before {
  content: "+";
}
.p-faq__a {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  font-size: 1.35rem;
  line-height: 1.9;
  opacity: 0;
  transition: max-height 0.3s ease, padding-top 0.3s ease, opacity 0.3s ease;
}
.p-faq__item.is-open .p-faq__toggle {
  transform: rotate(180deg);
}
.p-faq__item.is-open .p-faq__toggle::before {
  content: "−";
}
.p-faq__item.is-open .p-faq__a {
  max-height: 200px;
  padding-top: 10px;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .p-faq__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 60px 20px;
    border-radius: 60px 60px 0 0;
  }
  .p-faq__head {
    width: 100%;
  }
  .p-faq__list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__eyebrow {
    justify-content: center;
  }
  .p-faq__title {
    text-align: center;
  }
  .p-faq__lead {
    text-align: center;
  }
}

/**************************************************
  Signup(Figma 2093:696)
***************************************************/
.p-signup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 100px 120px;
  background: linear-gradient(150deg, #0f4a22 14.29%, #0b3319 85.71%);
}
.p-signup__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-signup__badge {
  padding: 6px 24px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.96px;
  color: #fff;
}
.p-signup__title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.55;
  color: #fff;
  text-align: center;
}
.p-signup__lead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}
.p-signup__checks {
  display: flex;
  gap: 24px;
}
.p-signup__checks li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
.p-signup__checks li::before {
  content: "✓";
  font-weight: 700;
  color: #FBCB38;
}
.p-signup__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 600px;
  max-width: 100%;
  padding: 34px 36px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.25);
}
.p-signup__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.p-signup__card-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-signup__card-sub {
  font-size: 1.25rem;
  color: #5B635A;
}
.p-signup__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.p-signup__form input, .p-signup__form button, .p-signup__form textarea, .p-signup__form select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-signup__row {
  display: flex;
  gap: 14px;
}
.p-signup__row .p-signup__field {
  flex: 1;
  min-width: 0;
}
.p-signup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-signup__field label {
  font-size: 1.2rem;
  font-weight: 700;
}
.p-signup__field input,
.p-signup__field textarea,
.p-signup__field select {
  width: 100%;
  padding: 12px 14px;
  background: #F1F5F9;
  border: 1px solid #E2E8E2;
  border-radius: 5px;
  font-size: 1.3rem;
}
.p-signup__field input::-moz-placeholder, .p-signup__field textarea::-moz-placeholder, .p-signup__field select::-moz-placeholder {
  color: #5B635A;
  opacity: 0.7;
}
.p-signup__field input::placeholder,
.p-signup__field textarea::placeholder,
.p-signup__field select::placeholder {
  color: #5B635A;
  opacity: 0.7;
}
.p-signup__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235B635A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.p-signup__field textarea {
  height: 88px;
  resize: vertical;
}
.p-signup__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-signup__no-sales {
  font-size: 1.1rem;
  text-align: center;
}
.p-signup__form input[type=submit].p-signup__submit, .p-signup__form .p-signup__submit {
  width: 288px;
  text-align: center;
  padding: 17px 0;
  background: #FBCB38;
  border-radius: 48px;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1F1A1B;
  cursor: pointer;
  transition: opacity 0.3s;
}
.p-signup__form input[type=submit].p-signup__submit:hover, .p-signup__form .p-signup__submit:hover {
  opacity: 0.8;
}
.p-signup__privacy {
  font-size: 1.1rem;
  color: #5B635A;
  text-align: center;
}
.p-signup__privacy a {
  font-weight: 500;
  color: #17842F;
}
.p-signup .wpcf7-response-output {
  text-align: center;
  font-size: 1.3rem;
}
.p-signup .wpcf7-form.invalid .wpcf7-response-output,
.p-signup .wpcf7-form.unaccepted .wpcf7-response-output,
.p-signup .wpcf7-form.failed .wpcf7-response-output,
.p-signup .wpcf7-form.aborted .wpcf7-response-output,
.p-signup .wpcf7-form.spam .wpcf7-response-output {
  color: #F70C0C;
}
.p-signup__mascot {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 106px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-signup {
    padding: 60px 20px 80px;
  }
  .p-signup__head {
    width: 100%;
    align-items: stretch;
  }
  .p-signup__badge {
    align-self: center;
  }
  .p-signup__title {
    font-size: 2.6rem;
  }
  .p-signup__checks {
    flex-direction: column;
    gap: 8px;
    align-self: center;
  }
  .p-signup__card {
    padding: 28px 20px 24px;
  }
  .p-signup__row {
    flex-direction: column;
    gap: 18px;
  }
}
.p-signup--doc {
  padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  .p-signup--doc {
    padding-top: 120px;
  }
}

/**************************************************
  サンクスページ(page-thanks.php 共通テンプレート)
***************************************************/
.p-thanks {
  display: flex;
  justify-content: center;
  padding: 180px 20px 120px;
  min-height: 70vh;
}
.p-thanks__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 640px;
  max-width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 56px 40px 48px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px -12px rgba(31, 51, 36, 0.15);
  text-align: center;
}
.p-thanks__mascot {
  width: 104px;
  height: auto;
}
.p-thanks__title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
}
.p-thanks__body {
  font-size: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding: 120px 20px 80px;
  }
  .p-thanks__card {
    padding: 40px 24px 36px;
  }
  .p-thanks__title {
    font-size: 2.2rem;
  }
}

.u-br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .u-br-pc {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
