/* ========================================================
   共通の色（1箇所で管理する）
   ======================================================== */
:root {
  --cream: #fffce3;                          /* メインコンテンツの淡黄背景 */
  --cream-50: rgba(255, 252, 227, 0.5);      /* 上記を50%にしたもの（はみ出しレイヤー用） */
}

/* ========================================================
   おまかせ保育システム LP - FV（ファーストビュー）
   ======================================================== */
.fv-hoiku {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, #ffffff 100%),
    linear-gradient(135deg, #fffad7 0%, rgba(255, 254, 245, 0) 100%);
}

.fv-hoiku_blob {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
  background: linear-gradient(to bottom, #6fbf8b 0%, rgba(210, 245, 55, 0.4) 100%);
}

.fv-hoiku_blob--1 {
  width: 240px;
  height: 240px;
  top: 120px;
  left: -2%;
  border-radius: 62% 38% 55% 45% / 45% 55% 42% 58%;
}

.fv-hoiku_blob--2 {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 42%;
  border-radius: 38% 62% 47% 53% / 58% 42% 60% 40%;
}

.fv-hoiku_blob--3 {
  width: 110px;
  height: 110px;
  top: 220px;
  right: 4%;
  border-radius: 55% 45% 65% 35% / 40% 60% 38% 62%;
}

.fv-hoiku .container {
  position: relative;
  z-index: 1;
}

.fv-hoiku .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* ---- 左カラム：ロゴ＋CTA ---- */
.fv-hoiku_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fv-hoiku_logobox {
  padding: 0;
}

.fv-hoiku_lead {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin: -10px 0 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.fv-hoiku_logobox img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 14px;
}

.fv-hoiku_ctas {
  display: flex;
  gap: 36px;
  margin-top: 22px;
}

.fv-hoiku_cta {
  flex: 1;
  min-width: 0;
  /* ラベルの行数が違ってもボタンの位置を揃える */
  display: flex;
  flex-direction: column;
}

.fv-hoiku_cta .fv-hoiku_btn {
  margin-top: auto;
}

.fv-hoiku_cta-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(17px, 2.5vh, 20px);
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}

.fv-hoiku_cta-label .arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #6fbf8b;
  flex: 0 0 auto;
}

.fv-hoiku_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 10px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: linear-gradient(180deg, #FF6868 0%, #FFAC88 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s, transform 0.2s;
}

.fv-hoiku_btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* 販売パートナー向け：導入検討の方と区別するため、保育AIバナーと同じ緑系にする */
.fv-hoiku_btn--partner {
  /* 「もっと詳しく 保育AI」の矢印ボタンと同じ緑 */
  background: linear-gradient(180deg, #5aab7c 0%, #86c9a2 100%);
}

.fv-hoiku_btn .icon-mail {
  flex: 0 0 auto;
}

/* ---- 右カラム：PC画面＋バッジ ---- */
.fv-hoiku_right {
  position: relative;
}

.fv-hoiku_laptop {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
}

.fv-hoiku_laptop-img {
  display: block;
  width: 100%;
  height: auto;
}

.fv-hoiku_badge {
  position: absolute;
  top: -48px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34c868 0%, #fff8c2 60%, #6fbf8b 78%, #34c868 100%);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 8px 18px rgba(79, 174, 85, 0.4);
}

.fv-hoiku_badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
}

.fv-hoiku_badge .badge-main {
  font-size: 1.7rem;
}

.fv-hoiku_badge .badge-sub {
  font-size: 1.3rem;
}

/* ========================================================
   お知らせ
   ======================================================== */
.fv-news {
  padding: 0 0 clamp(84px, 10.2vh, 116px);
  background: #fff;
}

.fv-news_box {
  position: relative;
  border-radius: 12px;
  padding: 26px 36px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  background: #fff;
  /* ラベルと中身の横並び（他・連携サービスと同じ組み方） */
  display: flex;
  align-items: flex-start;  /* ラベルを 1行目のお知らせに揃える */
  gap: clamp(18px, 2.4vw, 32px);
}

.fv-news_tag {
  flex: 0 0 auto;
  /* ラベルの中心と、お知らせ1行目の中心を合わせる */
  margin-top: -3px;
}

.fv-news_list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-news_list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 16px;
  color: #333;
}

.fv-news_date {
  flex: 0 0 auto;
  color: #666;
}

@media (max-width: 640px) {
  .fv-news_box {
    padding: 26px 20px 20px;
  }

  .fv-news_list li {
    flex-direction: column;
    gap: 2px;
  }
}

/* ========================================================
   ICT補助金対応につながる4つの基本機能
   ======================================================== */
.fv-feat {
  --pad-t: clamp(44px, 6.4vh, 68px);
  --pad-b: clamp(36px, 5.2vh, 56px);
  background: var(--cream);
}

.fv-feat_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(20px, 3vh, 26px);
}

.fv-feat_line {
  flex: 1 1 auto;
  height: 2px;
  background: #6fbf8b;
}

.fv-feat_badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 44px;
  background: linear-gradient(135deg, #34c868 0%, #fff8c2 60%, #6fbf8b 78%, #34c868 100%);
  color: #333;
  font-weight: 700;
  font-size: 16px;
  padding: 0 20px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(79, 174, 85, 0.3);
}

.fv-feat_badge::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  pointer-events: none;
}

.fv-feat_headtext {
  position: relative;
  top: -8px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 44px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.fv-feat_num {
  display: block;
  color: #ff9494;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin: 0 2px;
}

.fv-feat_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fv-feat_card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 16px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.fv-feat_img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.fv-feat_img img {
  display: block;
  width: 100%;
  height: auto;
}

.fv-feat_title {
  color: #ff9494;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.fv-feat_text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 979px) {
  .fv-feat_cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .fv-feat_head {
    flex-wrap: wrap;
  }

  .fv-feat_line {
    display: none;
  }
}

@media (max-width: 640px) {
  /* 2列のまま。文字と余白を少し詰めて収める */
  .fv-feat_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }

  .fv-feat_title {
    font-size: 16px;
  }

  .fv-feat_text {
    font-size: 14px;
    line-height: 1.6;
  }

  .fv-feat_headtext {
    white-space: normal;
    text-align: center;
  }
}

/* ========================================================
   基本機能に加えて、さらに便利に！
   ======================================================== */
.fv-more {
  position: relative;
}

.fv-more_wave {
  /* 切り欠きは上のセクション（4つの基本機能）と同じ色でなければならない */
  color: var(--cream);
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.fv-more_wave-sp {
  display: none;
}

.fv-more_img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-more_overlay {
  position: absolute;
  inset: 0;
  background: rgba(111, 191, 139, 0.3);
}

.fv-more_text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  text-shadow: 0 0 12px #fff, 0 0 20px #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 336 22' preserveAspectRatio='none'%3E%3Cpath d='M0,12 Q14,1 28,13 Q42,22 56,10 Q70,0 84,14 Q98,22 112,9 Q126,-1 140,13 Q154,21 168,11 Q182,1 196,13 Q210,22 224,10 Q238,0 252,14 Q266,22 280,9 Q294,-1 308,13 Q322,21 336,11' fill='none' stroke='%23fff' stroke-width='9' stroke-linecap='round' opacity='0.45'/%3E%3Cpath d='M0,11 Q14,3 28,12 Q42,20 56,9 Q70,1 84,13 Q98,20 112,8 Q126,1 140,12 Q154,19 168,10 Q182,2 196,12 Q210,19 224,9 Q238,2 252,13 Q266,19 280,8 Q294,1 308,12 Q322,19 336,10' fill='none' stroke='%23fff' stroke-width='5' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 22px;
}

@media (max-width: 640px) {
  .fv-more_img {
    height: 130px;
    /* 高さを抑えつつ、画像は拡大して見せる */
    background-size: 165% auto;
  }

  .fv-more_text {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* ========================================================
   保育AI・連携サービス
   ======================================================== */
.fv-ai {
  padding: 50px 0 60px;
  background: #fff;
}

.fv-ai_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.fv-ai_banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #9ccebf;
  border-radius: 14px;
  padding: 24px 28px;
  overflow: visible;
  min-height: 220px;
}

.fv-ai_banner-title {
  display: inline-block;
  color: #fff;
  font-size: 96px;
  font-weight: 900;
  line-height: 1.2;
  transform: rotate(-6deg);
  flex: 0 0 auto;
}

.fv-ai_banner-img {
  position: absolute;
  right: 4px;
  bottom: 0;
  top: -60px;
  width: 240px;
  height: 240px;
  object-fit: contain;
}

.fv-ai_banner-link {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #9ccebf;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 999px;
}

.fv-ai_banner-link::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid #cdeae1;
  border-radius: 999px;
  pointer-events: none;
}

.fv-ai_arrow {
  font-weight: 700;
}

.fv-ai_placeholder {
  background: #d9d9d9;
  border-radius: 14px;
  min-height: 160px;
}

.fv-ai_services {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}



.fv-ai_services-label {
  flex: 0 0 auto;
}

.fv-ai_circles-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 14px 0 18px;
  margin: -14px 0 -18px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fv-ai_circles-viewport::-webkit-scrollbar {
  display: none;
}

.fv-ai_circles {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fv-ai_circles li {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.fv-ai_circles li a,
.fv-ai_circles li span.fv-ai_circle-clip {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.fv-ai_circles li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.fv-ai_circles li.is-badge img {
  transform: scale(1.16);
}

.fv-ai_services-arrow {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  align-self: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #6fbf8b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 979px) {
  .fv-ai_row {
    grid-template-columns: 1fr;
  }

  /* ラベルを上段に、その下にカルーセル＋矢印を横並び */
  .fv-ai_services {
    flex-wrap: wrap;
  }

  /* ラベルは中身の幅のまま。疑似要素で強制的に改行させる */
  .fv-ai_services-label {
    flex: 0 0 auto;
    order: 0;
    margin-bottom: 4px;
  }

  .fv-ai_services::after {
    content: "";
    flex-basis: 100%;
    height: 0;
    order: 1;
  }

  .fv-ai_circles-viewport { order: 2; }
  .fv-ai_services-arrow { order: 3; }

  /* 折り返さず横スクロール（PCと同じカルーセル） */
  .fv-ai_circles {
    flex-wrap: nowrap;
  }

  .fv-ai_circles-viewport {
    flex: 1 1 0;
  }
}

@media (max-width: 640px) {
  /* 上のセクション（さらに便利に！）との間隔を詰める */
  .fv-ai {
    padding: 20px 0 40px;
  }

  /* バナーと「他・連携サービス」の間、ラベルと円の間を詰める */
  .fv-ai_row {
    margin-bottom: 14px;
  }

  .fv-ai_services-label {
    margin-bottom: 0;
  }

  /* flex の gap が行間にも効いているので行方向だけ詰める */
  .fv-ai_services {
    row-gap: 4px;
    column-gap: 10px;
  }

  .fv-ai_circles-viewport {
    padding: 8px 0 10px;
    margin: -8px 0 -10px;
  }

  /* PCと同じ横長比率（およそ 5:2）に揃える */
  .fv-ai_banner {
    /* グレーのバナー（.fv-ai_placeholder）と同じ高さに揃える */
    min-height: 0;
    aspect-ratio: auto;
    height: 170px;
    box-sizing: border-box;
    padding: 14px 18px;
    /* はみ出す吹き出し分の余白 */
    margin-top: 16px;
  }

  .fv-ai_banner-title {
    /* PC（高さ240pxで96px）と同じ比率まで拡大 */
    font-size: 60px;
    line-height: 1.1;
  }

  /* 吹き出しがバナーの上へはみ出すように大きめ＋上寄せ */
  .fv-ai_banner-img {
    width: 140px;
    height: 140px;
    top: -46px;
    right: 2px;
    bottom: auto;
  }

  .fv-ai_banner-link {
    right: 14px;
    bottom: 12px;
    font-size: 14px;
    padding: 5px 16px;
  }

  .fv-ai_placeholder {
    min-height: 0;
    height: 170px;
  }

  /* 3つ目が見切れる大きさにして、横スクロールできることを示す */
  .fv-ai_circles li {
    width: 118px;
    height: 118px;
  }

  .fv-ai_circles {
    gap: 14px;
    /* 最後の円までスクロールしたときに右端が詰まらないよう余白 */
    padding-right: 6px;
  }

  /* 矢印ボタンは使わず、指でのスクロールに任せる */
  .fv-ai_services-arrow {
    display: none;
  }

  /* 円とページ内ナビの間隔を詰める */
  .fv-ai {
    padding: 6px 0 20px;
  }

  .fv-jump {
    padding: 14px 0 clamp(40px, 6vh, 60px);
  }
}

/* ========================================================
   機能一覧
   ======================================================== */
.fv-list {
  --pad-t: clamp(44px, 6.5vh, 72px);
  --pad-b: clamp(40px, 6vh, 64px);
  background-color: var(--cream);
}

.fv-list_headwrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 1.6vh, 20px);
}

.fv-list_headline {
  text-align: center;
  font-size: clamp(20px, 2.6vh, 24px);
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
}

/* 機能一覧パネルの下に置くまとめの一文 */
.fv-list_lead {
  text-align: center;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: clamp(16px, 2.4vh, 26px) auto 0;
  max-width: 44em;
}

.fv-list_note {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin: 0 0 clamp(14px, 2.2vh, 30px);
}

.fv-list_panel {
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: clamp(16px, 2.4vh, 28px) 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.fv-list_cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fv-list_col {
  position: relative;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: clamp(9px, 1.4vh, 14px) 10px clamp(10px, 1.6vh, 16px);
}

.fv-list_colhead {
  display: block;
  margin: 0 0 clamp(8px, 1.4vh, 14px);
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 1.9vh, 18px);
  font-weight: 700;
  line-height: 1;
  padding: clamp(6px, 1.1vh, 9px) 12px;
  border-radius: 999px;
}

.fv-list_colhead--pink1 { background: #65B080; }
.fv-list_colhead--pink2 { background: #E36B8E; }
.fv-list_colhead--teal { background: #53BEEB; }
.fv-list_colhead--orange { background: #F49424; }

.fv-list_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0px, 0.3vh, 3px) 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fv-list_grid li {
  list-style: none;
}

.fv-list_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2px, 0.4vh, 4px);
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: clamp(2px, 0.5vh, 5px) 0;
  border-radius: 10px;
  transition: opacity 0.2s;
}

/* 実際のシステムと同じく、ホバーで透過させる */
@media (hover: hover) {
  .fv-list_icon:hover {
    opacity: 0.6;
  }
}

.fv-list_icon img {
  width: clamp(60px, 9vh, 96px);
  height: clamp(60px, 9vh, 96px);
  object-fit: contain;
}

.fv-list_icon span {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
  word-break: keep-all;   /* 単語の途中で切らない */
  overflow-wrap: break-word;/* 収まらないときだけ <wbr> 位置で折り返す */
}

.fv-list_modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-list_modal[hidden] {
  display: none;
}

.fv-list_modal-back {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.fv-list_modal-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  max-width: 520px;
  width: 90%;
}

.fv-list_modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}

.fv-list_modal-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
}

.fv-list_modal-icon {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  object-fit: contain;
}

.fv-list_modal-opt {
  margin: 14px 0 0;
  font-size: 14px;
  color: #e36b8e;
  font-weight: 700;
}

.fv-list_modal-opt[hidden] {
  display: none;
}

.fv-list_modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.fv-list_modal-desc {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 979px) {
  .fv-list_cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }
  .fv-list_panel {
    padding: 26px 18px;
  }
}

@media (max-width: 640px) {
  /* 案A：2カテゴリを横に並べる（カテゴリ内は2列のまま＝画面に4列） */
  .fv-list_cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }

  .fv-list_panel {
    padding: 14px 10px;
  }

  .fv-list_col {
    padding: 8px 4px 10px;
  }

  .fv-list_colhead {
    font-size: 13px;
    padding: 5px 4px;
    margin-bottom: 8px;
  }

  .fv-list_icon {
    padding: 3px 0;
    gap: 2px;
  }

  .fv-list_icon img {
    width: 58px;
    height: 58px;
  }

  /* 隣の列と文字がつながって見えないよう、列の間隔を空ける */
  .fv-list_grid {
    gap: 8px 6px;
  }

  .fv-list_icon span {
    font-size: 12px;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
}

/* ========================================================
   おまかせ保育システムの特徴
   ======================================================== */
.fv-char {
  position: relative;
  padding: clamp(46px, 6.8vh, 76px) 0 clamp(46px, 6.8vh, 76px);
  background: url("../images/lp/bg.png") center center / cover no-repeat;
  overflow: hidden;
}

/* 背景写真を白でやわらげる */
.fv-char_overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.fv-char > .container {
  position: relative;
  z-index: 1;
}

.fv-char_headwrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 1.6vh, 18px);
}

.fv-char_lead {
  text-align: center;
  font-size: clamp(16px, 2.2vh, 19px);
  font-weight: 700;
  line-height: 1.7;
  color: #333;
  margin: 0;
  position: relative;
  z-index: 2;      /* 引き上げた円より前面に置く */
}

.fv-char_circles {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, 3.2vw, 44px);
  /*
    特徴01・03を上へ引き上げ、リード文が左右の円の「間」に入り込む配置にする。
    リード文は中央寄せで幅が狭いため、両脇の円と横方向では重ならない。
  */
  margin-top: calc(-1 * clamp(40px, 7vh, 96px));
}

.fv-char_item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 360px;   /* コンテナ幅いっぱいに3つ並ぶ大きさ */
  text-align: center;
}

/* 中央（特徴02）だけ下げて千鳥に配置 */
/* 中央（特徴02）は引き上げ分を打ち消しつつ、さらに下げて千鳥に */
.fv-char_item--2 {
  margin-top: calc(clamp(50px, 9vh, 90px) + clamp(40px, 7vh, 96px));
}

.fv-char_num {
  position: relative;
  z-index: 2;              /* 円より前面に */
  margin: 0 0 -2.1em;      /* 数字を円の中まで大きく下げて重ねる */
  line-height: 1;
  color: #FF9494;
  font-weight: 700;
  pointer-events: none;
}

.fv-char_num-label {
  display: block;
  font-size: clamp(21px, 2.9vh, 25px);
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.fv-char_num-fig {
  display: block;
  font-size: clamp(62px, 9.5vh, 84px);
  letter-spacing: 0.02em;
}

.fv-char_circle {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  /* アイコン画像の台座と同じ質感：上が陰り下が白い＝お皿状の凹み＋盛り上がったフチ */
  background:
    /* 左上に濃いめの陰り */
    linear-gradient(135deg, rgba(150, 160, 170, 0.22) 0%, rgba(150, 160, 170, 0.06) 26%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(to bottom,
      #eef1f4 0%,
      #f3f6f9 10%,
      #f8fafc 22%,
      #fbfcfe 40%,
      #fdfefe 55%,
      #ffffff 70%,
      #ffffff 84%,
      #ffffff 94%,
      #dfe3e6 100%);   /* 最外周のグレーのふち */
  box-shadow:
    inset 8px 8px 14px -4px rgba(0, 0, 0, 0.10), /* 左上の内陰 */
    inset 0 3px 5px rgba(0, 0, 0, 0.03),        /* 上側の内陰＝凹み（ごく薄く） */
    inset 0 -3px 4px rgba(255, 255, 255, 0.9),  /* 下側の内側ハイライト */
    0 7px 11px -4px rgba(0, 0, 0, 0.30);        /* 真下だけに短く落ちる影（アイコン実測に合わせる） */
}

/* 外周の盛り上がったフチ（リム）と、その内側に落ちる影 */
.fv-char_circle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    inset 0 -3px 4px rgba(0, 0, 0, 0.09),         /* 白いリム自体に入る内陰（下） */
    inset 0 -6px 7px -2px rgba(0, 0, 0, 0.06),    /* 同（下・広がり） */
    inset 0 0 4px 10px rgba(255, 255, 255, 0.95), /* 白いリム（太め・輪郭は少しだけぼかす） */
    inset 0 0 3px 4px rgba(255, 255, 255, 0.9),
    inset 0 3px 4px -2px rgba(255, 255, 255, 0.9),
    inset 0 0 10px 11px rgba(0, 0, 0, 0.055), /* リムが内側に落とす影（薄め） */
    inset 0 0 26px 2px rgba(0, 0, 0, 0.02),   /* さらに外側へなじませる */
    inset 0 -8px 10px -6px rgba(0, 0, 0, 0.05); /* 白いリムの内側下部のわずかな陰 */
}

/* 円の中身は絶対配置。テキスト量に関わらず正円を保つ */
.fv-char_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fv-char_title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.6vh, 21px);
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  border-bottom: 2px solid #FF9494;
  padding-bottom: 6px;
}

.fv-char_text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* もっと詳しく 保育AI（角丸の右向き矢印。形はSVGで描画） */
.fv-char_aibtn {
  position: absolute;
  right: -30px;
  bottom: -18px;   /* 円の右下、4〜5時方向の接線上に置く */
  width: clamp(112px, 15.5vh, 128px);
  aspect-ratio: 118 / 110;
  padding-right: 18px;                 /* 矢じりの分だけ文字を左へ */
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  font-size: 16px;
  font-weight: 700;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));  /* CTAボタンと同じ落ち影 */
  transition: opacity 0.2s, transform 0.2s;
}

.fv-char_aibtn-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv-char_aibtn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.fv-char_aibtn-sub,
.fv-char_aibtn-main {
  position: relative;
  z-index: 1;             /* 文字を軸より前面に */
  text-shadow: 1px 2px 0 rgba(38, 92, 63, 0.55);
}

.fv-char_aibtn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.fv-char_aibtn-sub {
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 0;
  font-weight: 700;
}

.fv-char_aibtn-main {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

/* 選べる4パターンの登降園システム */
.fv-char_patterns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 46px);
  margin-top: clamp(48px, 6.5vh, 72px);
  padding: clamp(14px, 2.2vh, 22px) clamp(20px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.9);
  border: 2px dashed #6fbf8b;
  border-radius: 12px;
}

.fv-char_patterns-label {
  margin: 0;
  text-align: left;
  font-size: clamp(16px, 2.2vh, 19px);
  font-weight: 700;
  color: #6fbf8b;
  line-height: 1.6;
}

.fv-char_patterns-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-char_patterns-list li {
  position: relative;          /* ホバーで出す写真の基準位置 */
  cursor: default;
  width: clamp(62px, 8.5vh, 76px);
  height: clamp(62px, 8.5vh, 76px);
  border-radius: 50%;
  /* #6FBF8B を6割透過（不透明度40%）。質感はCTAボタンに合わせる */
  background: linear-gradient(180deg,
    rgba(111, 191, 139, 0.4) 0%,
    rgba(111, 191, 139, 0.28) 100%);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

@media (max-width: 979px) {
  .fv-char_circles {
    flex-wrap: wrap;
  }
  .fv-char_item {
    flex: 0 1 46%;
    max-width: 46%;
  }
  .fv-char_item--2 {
    margin-top: 0;
  }
  .fv-char_patterns {
    flex-direction: column;
    text-align: center;
  }
  .fv-char_patterns-label {
    text-align: left;
  }
  .fv-char_patterns-list {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* 縦積みになるので、PC用の引き上げ（リード文の脇に円を入れる配置）を解除 */
  .fv-char_circles {
    margin-top: 18px;
    gap: 24px;
  }

  .fv-char_item {
    flex: 0 1 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .fv-char_aibtn {
    right: -8px;
    bottom: -26px;
  }
}

/* ========================================================
   導入から運用まで、安心の伴走サポート
   ======================================================== */
.fv-sup {
  --pad-t: clamp(44px, 6.5vh, 72px);
  --pad-b: clamp(46px, 6.8vh, 76px);
  background: var(--cream);
}

/* 見出し：「4つの基本機能」と同系統（左右に線）。バッジは付けない */
.fv-sup_head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(18px, 3vh, 32px);
}

.fv-sup_headtext {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(18px, 2.6vh, 22px);
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}

.fv-sup_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.4vw, 30px);
}

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

.fv-sup_img {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: clamp(12px, 1.8vw, 22px);   /* 枠の内側に余白をとる */
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.fv-sup_img img {
  width: 100%;
  height: 100%;
  /* 縦横比の違う画像でも切り取らず、枠の中心に収める */
  object-fit: contain;
  object-position: center;
  /* イラストごとに絵の占める割合が違うため、個別に縮小率を指定 */
  transform: scale(var(--illust-scale, 1));
}

/* ② 電話サポート */
.fv-sup_item:nth-child(2) img { --illust-scale: 0.84; }
/* ③ ハードウェア対応 */
.fv-sup_item:nth-child(3) img { --illust-scale: 0.84; }

.fv-sup_title {
  margin: 0 0 6px;
  font-size: clamp(16px, 2.2vh, 18px);
  font-weight: 700;
  color: #333;
}

.fv-sup_text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

@media (max-width: 979px) {
  .fv-sup_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
}

@media (max-width: 640px) {
  /* 2列のまま。イラストと文字を少し小さくして収める */
  .fv-sup_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
    max-width: none;
  }

  .fv-sup_text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ========================================================
   料金プラン
   ======================================================== */
.fv-price {
  padding: clamp(48px, 7vh, 76px) 0 clamp(48px, 7vh, 76px);
  background: #fff;
}

.fv-price_headwrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 1.6vh, 18px);
}

.fv-price_lead {
  text-align: center;
  font-size: clamp(16px, 2.2vh, 18px);
  color: #333;
  margin: 0 0 clamp(14px, 2.4vh, 24px);
}

.fv-price_em {
  color: #FF9494;
  font-weight: 700;
}

.fv-price_row {
  position: relative;
  z-index: 0;              /* ::before の負のz-indexがセクション背景に沈まないように */
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

/* 左：料金カード（Figmaの Water caustic を内側8pxの線として再現） */
.fv-price_card {
  position: relative;
  padding: clamp(20px, 2.6vh, 26px) clamp(18px, 2.2vw, 26px);
  border-radius: 12px;          /* Figma: 角の半径 7.47 */
  background: #ffffff;         /* Figma: 塗り FFFFFF */
  /* 線は使わず、影の重ねで枠の輪郭を出す */
  box-shadow:
    0 0 5px rgba(90, 150, 115, 0.16),   /* 枠に密着する薄い影＝明るい柄の部分の輪郭を拾う */
    0 3px 6px rgba(0, 0, 0, 0.07),
    0 10px 24px rgba(0, 0, 0, 0.11);    /* 全体の落ち影 */
}

/* 内側 8px のリングだけを切り抜き、グラデーションを敷く */
.fv-price_card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 8px;                /* Figma: 線の太さ 8 / 位置 内側 */
  background:
    linear-gradient(135deg, #6fbf8b 0%, #c7ffda 38%, #6fbf8b 62%, #c7ffda 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.fv-price_card-label {
  margin: 0 0 clamp(12px, 1.8vh, 16px);
  padding: 11px 14px;
  border-radius: 10px;
  background: #6fbf8b;
  color: #fff;
  font-size: clamp(16px, 2.2vh, 19px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.fv-price_month {
  display: inline-block;
  margin: 0 0 4px;
  padding: 5px 18px;
  border-radius: 10px;
  background: #FF9494;
  color: #fff;
  font-size: clamp(16px, 2.2vh, 18px);
  font-weight: 700;
  line-height: 1.2;
}

/* 「月額」と金額を同じ幅の箱に入れ、箱ごと中央寄せ＝頭が揃う */
.fv-price_box {
  width: fit-content;
  margin: 0 auto;
}

.fv-price_divider {
  height: 1px;
  background: #d7ece0;
  margin: clamp(12px, 1.8vh, 17px) 0 clamp(11px, 1.6vh, 15px);
}

.fv-price_amount {
  margin: 0;
  color: #6fbf8b;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

.fv-price_num {
  font-size: clamp(52px, 8vh, 76px);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.fv-price_unit {
  color: #333;
  white-space: nowrap;
}

.fv-price_yen {
  font-size: clamp(16px, 2.2vh, 19px);
  font-weight: 700;
}

.fv-price_tax {
  font-size: 14px;
}

.fv-price_kara {
  color: #333;
  font-size: clamp(20px, 2.8vh, 26px);
  font-weight: 700;
}

.fv-price_note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(111, 191, 139, 0.1);   /* #6FBF8B 不透明度10% */
  border: none;
  font-size: 14px;
  color: #555;
  text-align: left;
  line-height: 1.7;
}

.fv-price_note-text {
  white-space: nowrap;   /* 1行で表示 */
}

.fv-price_check {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6fbf8b;
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 右：3つのメリット */
.fv-price_merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fv-price_merit {
  padding: 10px clamp(6px, 1vw, 14px);
  text-align: center;
}

.fv-price_merit + .fv-price_merit {
  border-left: 1px solid #e3e8e5;
}

.fv-price_icon {
  width: min(100%, clamp(128px, 18vh, 172px));
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 auto clamp(16px, 2.4vh, 22px);
  border-radius: 50%;
  background: rgba(111, 191, 139, 0.1);   /* #6FBF8B 不透明度10% */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 縦横比の違うイラストを、円の中央に収める */
.fv-price_icon img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  object-position: center;
  /* イラストごとに絵の重心が違うため、個別に上下位置を微調整 */
  transform: translateY(var(--illust-y, 0));
}

/* ③ 補助金・助成金：少し下げる */
.fv-price_merit:nth-child(3) img { --illust-y: 6%; }

/* 手描き風の波線マーカー（#FF9494） */
.fv-price_mk {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 14'%3E%3Cpath d='M0 9 Q 10 3 20 9 T 40 9' fill='none' stroke='%23FF9494' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left bottom 1px;
  background-size: auto 11px;
  padding-bottom: 2px;
}

.fv-price_merit-text {
  margin: 0;
  font-size: clamp(16px, 2.4vh, 19px);
  font-weight: 700;
  line-height: 1.85;
  color: #555;
}

@media (max-width: 979px) {
  .fv-price_row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fv-price_card {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .fv-price_merits {
    gap: 18px 0;
  }
  .fv-price_merit {
    padding: 0 6px;
  }
}

/* ========================================================
   画面右に固定するページ内ナビ（タブ型）
   ======================================================== */
.fv-sidenav {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* 初期状態は隠しておき、FVを過ぎたら is-shown が付いて現れる */
  transform: translateY(-50%) translateX(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}

.fv-sidenav.is-shown {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
}

.fv-sidenav_item {
  display: flex;
  align-items: center;
  gap: 7px;
  /* 4つのタブと固定お問い合わせボタンの左ラインを揃える */
  width: var(--sidenav-w, 118px);
  box-sizing: border-box;
  padding: 11px 14px;
  background: #fff;
  color: #4f9b6d;
  border: none;
  border-radius: 12px 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, transform 0.2s;
}

.fv-sidenav_item:hover {
  background: rgba(111, 191, 139, 0.12);
  transform: translateX(-3px);
}

.fv-sidenav_arrow {
  font-size: 10px;
  color: #6fbf8b;
}

/* タブレット以下では本文に被るため非表示（帯のナビが残る） */
@media (max-width: 1199px) {
  .fv-sidenav {
    display: none;
  }
}

/* ========================================================
   よくある質問
   ======================================================== */
.fv-faq {
  --pad-t: clamp(44px, 6.5vh, 72px);
  --pad-b: clamp(48px, 7vh, 80px);
  background: var(--cream);
}

.fv-faq_headwrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 1.6vh, 18px);
}

.fv-faq_lead {
  text-align: center;
  font-size: clamp(15px, 2.1vh, 16px);
  color: #555;
  margin: 0 0 clamp(18px, 3vh, 30px);
}

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

.fv-faq_item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* 質問（ボタン）：白カード＋緑の丸Qバッジ */
.fv-faq_q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  transition: background 0.2s;
}

/* マウス操作の端末だけホバー色を出す（タップ後に色が残るのを防ぐ）。
   開いている間は必ず白 */
@media (hover: hover) {
  .fv-faq_q:hover {
    background: #f7fbf8;
  }
}

.fv-faq_q[aria-expanded="true"],
.fv-faq_q[aria-expanded="true"]:hover,
.fv-faq_q:focus {
  background: #fff;
}

.fv-faq_mark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #6fbf8b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.fv-faq_qtext {
  flex: 1 1 auto;
}

.fv-faq_arrow {
  flex: 0 0 auto;
  font-size: 14px;
  color: #6fbf8b;
  transition: transform 0.25s;
}

.fv-faq_q[aria-expanded="true"] .fv-faq_arrow {
  transform: rotate(180deg);
}

/* 回答 */
.fv-faq_a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px 16px;
  background: #fff;
  border-top: 1px dashed #dceae2;   /* 質問との区切り */
}

.fv-faq_a[hidden] {
  display: none;
}

/* 回答側の「A.」は塗りつぶさず、輪郭のバッジに */
.fv-faq_mark--a {
  background: #fff;
  color: #6fbf8b;
  border: 1.5px solid #6fbf8b;
}

.fv-faq_atext {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* ========================================================
   お問い合わせフォーム
   ======================================================== */
.fv-form {
  background: #fff;
}

.fv-form_intro {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin: 0;
  padding-top: clamp(48px, 7vh, 80px);   /* 前のセクションとの間隔 */
}

.fv-form_arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(24px, 3.6vh, 38px) 0 clamp(30px, 4.5vh, 48px);   /* 導入文の下と、フォーム本体の間 */
}

.fv-form_arrow svg {
  width: 40px;
  height: 28px;
}

/* 2つ目は小さく */
.fv-form_arrow svg:last-child {
  width: 26px;
  height: 18px;
}

.fv-form_body {
  background: var(--cream);
  --pad-t: clamp(42px, 6.2vh, 68px);
  --pad-b: clamp(48px, 7vh, 80px);
}

.fv-form_headwrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 1.6vh, 18px);
}

.fv-form_lead {
  text-align: center;
  font-size: clamp(15px, 2.1vh, 16px);
  color: #555;
  margin: 0 0 clamp(20px, 3.4vh, 34px);
}

.fv-form_form {
  max-width: 900px;
  margin: 0 auto;
}

/* セクション見出し（ピンクの丸付き） */
.fv-form_secttl {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #6fbf8b;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

/* CTAボタンと同じ質感の丸 */
.fv-form_secttl::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(180deg, #FF6868 0%, #FFAC88 100%);
  /* 落ち影はサイズに対して大きすぎるため省き、内側のベベルだけ残す */
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.2);
}

.fv-form_secttl + .fv-form_row {
  border-top: none;
}

.fv-form_row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 16px 20px;
  align-items: start;
  padding: 12px 0;
}

.fv-form_label {
  font-size: 14px;
  font-weight: 700;
  color: #444;
  line-height: 1.6;
  padding-top: 8px;
}

.fv-form_sub {
  font-weight: 400;
  color: #888;
}

/* 必須ラベル */
.fv-form_req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  background: #ff9494;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: 2px;
}

/* 入力欄 */
.fv-form_field input[type="text"],
.fv-form_field input[type="tel"],
.fv-form_field input[type="email"],
.fv-form_field select,
.fv-form_field textarea {
  width: 100%;
  box-sizing: border-box;   /* padding・borderを幅に含めて全ての枠を同じ長さに */
  padding: 10px 12px;
  border: 1px solid #d7ddd9;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: #333;
  font-family: inherit;
}

.fv-form_field textarea {
  resize: vertical;
  line-height: 1.7;
}

.fv-form_field input:focus,
.fv-form_field select:focus,
.fv-form_field textarea:focus {
  outline: 2px solid #b7e0c6;
  outline-offset: -1px;
}

.fv-form_field--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fv-form_field--checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding-top: 6px;
}

.fv-form_field--radios {
  display: flex;
  gap: 40px;
  padding-top: 6px;
}

.fv-form_check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  line-height: 1.5;
}

.fv-form_check input {
  width: 16px;
  height: 16px;
  accent-color: #6fbf8b;
  flex: 0 0 auto;
}

/* チェックボックス：締め色が明るいとブラウザがチェックを黒で描くため、白抜きに差し替える */
.fv-form_check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  border: 1.5px solid #bcd8c6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.fv-form_check input[type="checkbox"]:checked {
  border-color: #6fbf8b;
  background-color: #6fbf8b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3.2 3.2L13 5' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

.fv-form_check input[type="checkbox"]:focus-visible {
  outline: 2px solid #6fbf8b;
  outline-offset: 2px;
}

/* ラジオボタンも同じ考え方で、黒い円を使わず緑で描く */
.fv-form_check input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  border: 1.5px solid #bcd8c6;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.fv-form_check input[type="radio"]:checked {
  border-color: #6fbf8b;
  background-image: radial-gradient(#6fbf8b 0 42%, transparent 46%);
}

.fv-form_check input[type="radio"]:focus-visible {
  outline: 2px solid #6fbf8b;
  outline-offset: 2px;
}

.fv-form_agree {
  display: flex;
  flex-direction: column;     /* 案内文の下にチェックを置く */
  align-items: center;
  justify-content: center;
  margin: clamp(20px, 3.4vh, 34px) 0 clamp(16px, 2.6vh, 24px);
}

.fv-form_submitwrap {
  display: flex;
  justify-content: center;
}

/* 送信ボタン（CTAボタンと同じ質感） */
.fv-form_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 14px 40px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF6868 0%, #FFAC88 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s, transform 0.2s;
}

.fv-form_submit-icon {
  flex: 0 0 auto;
  /* 文字が字送り0.2emのぶん右に寄るので、視覚的な中心を合わせる */
  margin-left: 0.2em;
}

.fv-form_submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  /* 項目数が多く縦に長くなるため、余白を詰める。
     ただし導入文まわりは目立たせたいので広めに取る */
  .fv-form_intro {
    padding-top: 44px;
  }

  .fv-form_arrow {
    padding: 14px 0 34px;
  }

  .fv-form_body {
    --pad-t: 28px;
    --pad-b: 36px;
  }

  .fv-form_lead {
    margin-bottom: 18px;
  }

  .fv-form_secttl {
    margin-bottom: 10px;
  }

  .fv-form_row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 8px 0;
  }
  .fv-form_label {
    padding-top: 0;
  }
  .fv-form_field--checks {
    grid-template-columns: 1fr;
  }
  .fv-form_field--half {
    grid-template-columns: 1fr;
  }
}

/* ページ内リンクのスクロール挙動 */
html {
  scroll-behavior: smooth;
}

#feat-list,
#char,
#pricing,
#faq,
#contact {
  scroll-margin-top: 20px;
}

/* ========================================================
   背景のはみ出しレイヤー（淡黄セクション共通）
   ベースの #FFFCE3 100% に対し、50% の層を上下にはみ出させる
   ======================================================== */
.fv-bleed {
  --bleed: clamp(20px, 3vh, 44px);   /* はみ出し量：ここ1箇所で全セクションを調整 */
  position: relative;
  /*
    隣接する .fv-more / .fv-char は position:relative を持つため、
    そのままでは後から描画されて、はみ出しレイヤーを覆い隠してしまう。
    z-index を1つ上げて、隣のセクションの上に重なるようにする。
  */
  z-index: 1;

  /*
    透過レイヤーは隣接セクションの上でごく薄くしか見えず、
    視覚的な境界は「濃い方の端」のまま。よって差し引きはしない。
  */
  padding-top: var(--pad-t, 40px);
  padding-bottom: var(--pad-b, 40px);
}

.fv-bleed::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--bleed));
  bottom: calc(-1 * var(--bleed));
  background: var(--cream-50);
  pointer-events: none;
  z-index: 0;
}

.fv-bleed > .container {
  position: relative;
  z-index: 1;
}

/* 4つの基本機能は下に「さらに便利に！」の切り欠きが続くため、下方向は無し */
.fv-feat.fv-bleed::before {
  bottom: 0;
}

/* 下にはみ出さないので、下の余白は差し引かずそのまま使う */
.fv-feat.fv-bleed {
  padding-bottom: var(--pad-b);
}

/* ========================================================
   セクション見出し（緑のピル＋左右の丸）
   ======================================================== */
.fv-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 12px);
}

.fv-head_pill {
  background: #6fbf8b;
  color: #fff;
  /* 文字の下に濃い影を落として輪郭を出す */
  text-shadow: 1px 2px 0 rgba(38, 92, 63, 0.55);
  font-size: clamp(17px, 2.4vh, 20px);
  font-weight: 700;
  line-height: 1.4;
  padding: clamp(9px, 1.5vh, 12px) clamp(24px, 3vw, 38px);
  border-radius: 999px;
  text-align: center;
}

.fv-head_dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6fbf8b;
  opacity: 0.45;
}

.fv-head_dot--s {
  width: 6px;
  height: 6px;
  opacity: 0.28;
}

@media (max-width: 640px) {
  .fv-news_box {
    flex-direction: column;
    align-items: flex-start;   /* 縦並びのときは左揃えに戻す */
    gap: 14px;
  }
}

/* サブ見出し：メイン見出しと同じ緑ピル。丸は付けず、大きさで格を下げる */
.fv-head_sub {
  display: inline-block;
  background: #6fbf8b;
  color: #fff;
  text-shadow: 1px 2px 0 rgba(38, 92, 63, 0.55);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  padding: 8px 26px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  /* 機能一覧：見出しまわりの余白を詰める */
  .fv-list {
    --pad-t: 26px;
    --pad-b: 28px;
  }

  .fv-list_headwrap {
    margin-bottom: 10px;
  }

  .fv-list_headline {
    line-height: 1.5;
    margin-bottom: 4px;
  }

  .fv-list_note {
    line-height: 1.5;
    margin-bottom: 14px;
  }

  /* 見出し・注釈は意味の切れ目で折り返す */
  .fv-list_headline span,
  .fv-list_note span,
  .fv-list_lead span {
    display: inline-block;
  }

  /* スマホでも丸の装飾を残す。幅に収まるよう小さめに */
  .fv-head {
    gap: 6px;
  }

  .fv-head_dot {
    width: 7px;
    height: 7px;
  }

  .fv-head_dot--s {
    width: 5px;
    height: 5px;
  }

  .fv-head_pill {
    padding: 9px 20px;
  }
}

/* ========================================================
   ページ内遷移ナビ
   ======================================================== */
.fv-jump {
  /* 下は、機能一覧のはみ出しレイヤー（最大44px）を見込んで広めに取る */
  padding: clamp(34px, 5vh, 52px) 0 clamp(66px, 9vh, 104px);
  background: #fff;
}

.fv-jump_nav {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);   /* 線ではなく影で輪郭を出す */
}

.fv-jump_item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 700;
  color: #4f9b6d;
  background: #fff;
  text-decoration: none;
  border-left: 1px solid #e4efe8;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.fv-jump_item:first-child {
  border-left: none;
}

/* 現在表示中のセクションを示す（スクロール連動は未実装） */
.fv-jump_item.is-active {
  background: #6fbf8b;
  color: #fff;
}

.fv-jump_arrow {
  font-size: 12px;
  color: #6fbf8b;
}

.fv-jump_item.is-active .fv-jump_arrow {
  color: #fff;
}

.fv-jump_item:hover {
  background: #6fbf8b;
  color: #fff;
}

.fv-jump_item:hover .fv-jump_arrow {
  color: #fff;
}

@media (max-width: 767px) {
  /* 上下の余白を詰める */
  .fv-jump {
    padding: 16px 0 clamp(40px, 6vh, 60px);
  }

  /* 2×2。罫線をやめて独立したボタン4つに */
  .fv-jump_nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    width: 92vw;
    margin-left: calc(50% - 46vw);
  }

  /* 固定時に高さが抜けて画面が飛ばないよう、場所を確保しておく */
  .fv-jump .container {
    min-height: 78px;
  }

  .fv-jump_nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    z-index: 90;
    padding: 6px 4vw;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  }

  .fv-jump_item {
    min-width: 0;
    padding: 4px 6px;
    line-height: 1.3;
    gap: 5px;
    border: 1.5px solid #cfe6d8;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  }
}

/* ========================================================
   固定お問い合わせボタン
   ======================================================== */
.fv-fab {
  position: fixed;
  /* 画面の右端に貼り付き、左側だけ大きく丸めた形（Dのような形） */
  right: 0;
  bottom: 92px;
  z-index: 100;
  width: var(--sidenav-w, 118px);
  height: 96px;
  box-sizing: border-box;
  border-radius: 999px 0 0 999px;
  border: 3px solid #fff;
  border-right: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(180deg, #FF6868 0%, #FFAC88 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.fv-fab:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.fv-fab_text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* PC・タブレットは1行にする */
.fv-fab_text span {
  white-space: nowrap;
}

@media (max-width: 640px) {
  /* スマホ：機能一覧のあたりまでスクロールしたら現れる */
  .fv-fab {
    opacity: 0;
    visibility: hidden;
    transform: translateX(110%);
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
  }

  .fv-fab.is-shown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .fv-fab.is-shown:hover {
    transform: translateX(0) translateY(-2px);
  }

  .fv-fab {
    width: 76px;
    height: 82px;
    right: 0;
    bottom: 72px;
    gap: 2px;
  }

  .fv-fab_icon {
    width: 18px;
    height: 18px;
  }

  /* 文字は14pxのまま。「お問い」「合わせ」の2行に固定する
     ☆ 自動折り返しだと、端末の文字サイズ設定によって3行になることがある */
  .fv-fab_text {
    font-size: 14px;
    line-height: 1.25;
  }

  .fv-fab_text span {
    display: block;
  }
}

@media (max-width: 640px) {
  /* 切り欠きの三角：浅く・横に広く */
  .fv-more_wave {
    height: 46px;
  }

  .fv-more_wave-pc { display: none; }
  .fv-more_wave-sp { display: block; }

  /* 4つの基本機能：上下の余白を詰める */
  .fv-feat {
    --pad-t: 30px;
    --pad-b: 24px;
  }

  .fv-feat_head {
    margin-bottom: 16px;
  }
}

/* ---- レスポンシブ ---- */
/* 14インチノートPC想定（表示幅 目安 1200〜1440px）：少しコンパクトに */
@media (min-width: 1200px) and (max-width: 1440px) {
  .fv-hoiku {
    padding: 40px 0;
  }

  .fv-hoiku_ctas {
    gap: 12px;
    margin-top: 16px;
  }

  .fv-hoiku_btn {
    padding: 11px 8px;
  }

  .fv-hoiku_laptop {
    max-width: 440px;
  }

  .fv-hoiku_badge {
    width: 100px;
    height: 100px;
    top: -12px;
  }

  .fv-hoiku_badge .badge-main {
    font-size: 0.9rem;
  }

  .fv-hoiku_badge .badge-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 979px) {
  .fv-hoiku_right {
    margin-top: 40px;
  }

  .fv-hoiku_badge {
    width: 100px;
    height: 100px;
    right: 10px;
  }

  .fv-hoiku_badge .badge-main {
    font-size: 0.9rem;
  }

  .fv-hoiku_badge .badge-sub {
    font-size: 0.68rem;
  }
}

@media (max-width: 640px) {
  .fv-hoiku {
    padding: 36px 0;
  }

  /* スマホ幅は「ロゴ → PC画面 → CTAボタン」の順に並べ替える。
     左カラムを display:contents で解体し、中身を row の直接の子として扱う */
  .fv-hoiku .row {
    display: flex;
    flex-direction: column;
  }

  /* 20_grid.css の「.container [class*=grid_] { display:block }」より
     詳細度を上げないと効かない */
  .container .fv-hoiku .row .fv-hoiku_left,
  .fv-hoiku .row .fv-hoiku_left {
    display: contents;
  }

  .fv-hoiku_logobox { order: 1; }
  .fv-hoiku_right   { order: 2; }
  .fv-hoiku_ctas    { order: 3; }

  .fv-hoiku_ctas {
    gap: 10px;
    margin-top: 18px;
  }

  .fv-hoiku_btn {
    padding: 12px 6px;
  }
}

/* ========================================================
   スマートフォン幅の調整
   ======================================================== */
@media (max-width: 767px) {
  /* 見出し：折り返しを許可し、左右の線は短く */
  .fv-sup_head {
    gap: 10px;
  }

  .fv-sup_headtext {
    white-space: normal;
    text-align: center;
  }

  /* 料金の注記：1行固定をやめる */
  .fv-price_note-text {
    white-space: normal;
  }

  .fv-price_note {
    align-items: flex-start;
    gap: 10px;
  }

  /* よくある質問：内側の余白を詰める */
  .fv-faq_q {
    gap: 10px;
    padding: 13px 14px;
    font-size: 15px;
  }

  .fv-faq_a {
    gap: 10px;
    padding: 14px;
  }

  .fv-faq_atext {
    font-size: 14px;
  }

  /* よくある質問：セクションの上下と見出しまわりを詰める */
  .fv-faq {
    --pad-t: 26px;
    --pad-b: 30px;
  }

  .fv-faq_headwrap {
    margin-bottom: 10px;
  }

  .fv-faq_lead {
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .fv-faq_list {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  /* 料金の3項目：円と文字を画面幅なりに */
  .fv-price_merits {
    gap: 20px 0;
  }

  .fv-price_merit {
    padding: 0 4px;
  }

  .fv-price_merit-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* 見出しピル：左右の余白を詰める */
  .fv-head_pill {
    padding: 9px 18px;
    font-size: 17px;
  }

  .fv-head_sub {
    padding: 7px 18px;
    font-size: 15px;
  }

  /* 登降園システムの4パターン：上の余白と内側を詰める */
  .fv-char_patterns {
    margin-top: 22px;
    padding: 12px 14px 14px;
    gap: 10px;
  }

  /* 折り返さず1列に並べる */
  .fv-char_patterns-list {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .fv-char_patterns-list li {
    flex: 0 0 auto;
    width: min(68px, 20vw);
    height: min(68px, 20vw);
  }

  /* 特徴の番号：円に深くかぶせて、見出しとの間を詰める */
  .fv-char_num {
    margin-bottom: -3em;
  }
}

@media (max-width: 479px) {
  /* 横並びだとラベルが折り返して窮屈なため、縦積みにする */
  .fv-hoiku_ctas {
    flex-direction: column;
    gap: 16px;
  }

  .fv-hoiku_cta-label {
    margin-bottom: 6px;
  }
}

@media (max-width: 640px) {
  /* バッジ：CTAボタンやPC画像に重ならない位置・大きさに */
  .fv-hoiku_right {
    /* grid の [class*=grid_]+[class*=grid_] による 30px を打ち消す */
    /* 上はロゴ、下はCTAボタン。バッジのはみ出し分だけ確保する */
    margin-top: 14px;
    padding-top: 10px;
    margin-bottom: 4px;
  }

  /* リード文：「保育のＩＣＴ化・・・」で改行させる */
  .fv-hoiku_lead span {
    display: inline-block;
  }

  .fv-hoiku_badge {
    width: 120px;
    height: 120px;
    top: -48px;
    right: -6px;
  }

  .fv-hoiku_badge::before {
    inset: 6px;
  }

  .fv-hoiku_badge .badge-main {
    font-size: 1.3rem;
  }

  .fv-hoiku_badge .badge-sub {
    font-size: 0.98rem;
  }
}

/* ---- スマホ：左右の余白を狭くしてコンテンツ幅を広げる ----
   20_grid.css の .container は 600/750（＝80vw）。このLPだけ 88vw にする */
@media (max-width: 767px) {
  .fv-hoiku > .container,
  .fv-news > .container,
  .fv-feat > .container,
  .fv-ai > .container,
  .fv-jump > .container,
  .fv-list > .container,
  .fv-char > .container,
  .fv-sup > .container,
  .fv-price > .container,
  .fv-faq > .container,
  .fv-form > .container,
  .fv-form_body > .container {
    width: 88vw;
  }
}

/* スマホだけ有効な強制改行 */
.sp-br { display: none; }

@media (max-width: 640px) {
  .sp-br { display: block; }
}

@media (max-width: 640px) {
  /* モーダル：画面の左右に余白を確保する */
  .fv-list_modal {
    padding: 0 18px;
  }

  .fv-list_modal-box {
    width: 100%;
    max-width: none;
    padding: 24px 18px 22px;
    max-height: 82vh;
    overflow-y: auto;
  }

  .fv-list_modal-close {
    top: 8px;
    right: 10px;
  }
}

@media (max-width: 640px) {
  /* リード文：意味の切れ目で折り返す */
  .fv-price_seg,
  .fv-faq_lead span,
  .fv-form_lead span,
  .fv-form_intro span {
    display: inline-block;
  }
}

/* ---- タブレット（768〜979px）：左右の余白を確保する ----
   20_grid.css は .container を 748px 固定にしているため、
   768px 端末では左右10pxしか空かない。このLPだけ余白を持たせる */
@media (min-width: 768px) and (max-width: 979px) {
  .fv-hoiku > .container,
  .fv-news > .container,
  .fv-feat > .container,
  .fv-ai > .container,
  .fv-jump > .container,
  .fv-list > .container,
  .fv-char > .container,
  .fv-sup > .container,
  .fv-price > .container,
  .fv-faq > .container,
  .fv-form > .container,
  .fv-form_body > .container {
    width: min(748px, 92vw);
  }

  /* FVはPCと同じ左右2カラムを維持する
     （20_grid.css は grid_5=300px / grid_7=428px の固定幅のため、
       コンテナを狭めると折り返してしまう。可変幅で上書きする） */
  /* 保育AIバナー：PCと同じ左右2列に戻す */
  .fv-ai_row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    max-width: 100%;
    align-items: start;
  }

  .fv-ai_banner,
  .fv-ai_placeholder {
    min-width: 0;
    max-width: 100%;
  }

  .fv-ai_banner {
    min-height: 0;
    aspect-ratio: auto;
    height: 150px;
    box-sizing: border-box;
    padding: 16px 18px;
    margin-top: 26px;
  }

  .fv-ai_banner-title {
    font-size: 46px;
    line-height: 1.1;
  }

  .fv-ai_banner-img {
    width: 132px;
    height: 132px;
    top: -40px;
    right: 2px;
    bottom: auto;
  }

  .fv-ai_banner-link {
    right: 14px;
    bottom: 12px;
    font-size: 14px;
    padding: 5px 16px;
  }

  .fv-ai_placeholder {
    min-height: 0;
    aspect-ratio: auto;
    height: 150px;
    box-sizing: border-box;
    margin-top: 26px;
  }


  /* よくある質問：上下の余白を詰める
     （料金プラン・お問い合わせはPCと同じ余白のまま） */
  .fv-faq {
    --pad-t: 30px;
    --pad-b: 34px;
  }

  .fv-faq_headwrap {
    margin-bottom: 10px;
  }

  .fv-faq_lead {
    margin-bottom: 18px;
  }

  /* お問い合わせフォーム：項目の上下を詰める（導入文まわりの余白はそのまま） */
  .fv-form_row {
    padding: 9px 0;
    gap: 12px 20px;
  }

  .fv-form_secttl {
    margin-bottom: 12px;
  }

  .fv-form_body {
    --pad-t: 40px;
    --pad-b: 48px;
  }

  .fv-form_lead {
    margin-bottom: 22px;
  }

  /* 4つの基本機能：上の余白を詰める */
  .fv-feat {
    --pad-t: 30px;
  }

  .fv-feat_head {
    margin-bottom: 18px;
  }

  /* 伴走サポート：上下の余白を詰める */
  .fv-sup {
    --pad-t: 30px;
    --pad-b: 32px;
  }

  .fv-sup_head {
    margin-bottom: 18px;
  }

  /* PCと同じ4つ横並び1列に */
  .fv-sup_items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .fv-sup_title {
    font-size: 16px;
  }

  .fv-sup_text {
    font-size: 14px;
    line-height: 1.6;
  }

  /* 登降園の4パターン：PCと同じ横並び（ラベル左・円右）に戻す */
  .fv-char_patterns {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    margin-top: 24px;
    padding: 14px 20px;
  }

  .fv-char_patterns-list {
    justify-content: flex-end;
    gap: 12px;
  }

  .fv-char_patterns-list li {
    width: 70px;
    height: 70px;
  }

  /* 「もっと詳しく保育AI」ボタン：説明文にかからない位置へ逃がす */
  .fv-char_aibtn {
    width: 112px;
    right: -22px;
    bottom: -34px;
  }

  /* 特徴：2列＋中央の2段組み（03を中央に置く） */
  .fv-char_circles {
    justify-content: center;
    row-gap: 0;
    /* PC用の引き上げ（リード文の脇に円を差し込む配置）を解除。
       2列ではリード文と番号が重なるため */
    margin-top: 10px;
  }

  .fv-char_item--3 {
    margin-left: auto;
    margin-right: auto;
    /* 上段の円と間が空いて見えるので引き上げる */
    margin-top: -26px;
  }

  /* 見出しは意味の切れ目で折り返す */
  .fv-char_title span {
    display: inline-block;
  }

  /* 機能一覧：セクションの上下と見出しまわりを詰める */
  .fv-list {
    --pad-t: 30px;
    --pad-b: 32px;
  }

  .fv-list_headwrap {
    margin-bottom: 10px;
  }

  .fv-list_headline {
    margin-bottom: 4px;
  }

  .fv-list_note {
    margin-bottom: 16px;
  }

  /* 連携サービス：円と上下の余白を詰める */
  .fv-ai {
    padding: 26px 0 30px;
  }

  .fv-ai_row {
    margin-bottom: 18px;
  }

  .fv-ai_services {
    row-gap: 6px;
    column-gap: 14px;
  }

  .fv-ai_circles li {
    width: 118px;
    height: 118px;
  }

  .fv-ai_circles {
    gap: 16px;
  }

  .fv-ai_circles-viewport {
    padding: 10px 0 12px;
    margin: -10px 0 -12px;
  }

  /* ページ内ナビの上下 */
  .fv-jump {
    padding: 22px 0 clamp(50px, 7vh, 80px);
  }

  /* 固定時に高さが抜けてページが飛ばないよう場所を確保 */
  .fv-jump .container {
    min-height: 48px;
  }

  /* スクロールでその位置を過ぎたら、4列のまま画面上部に固定 */
  .fv-jump_nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    border-radius: 0;
    padding: 7px 4vw;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    gap: 8px;
    overflow: visible;
  }

  /* 固定時は独立したボタン4つとして見せる */
  .fv-jump_nav.is-fixed .fv-jump_item {
    border-left: none;
    border: 1.5px solid #cfe6d8;
    border-radius: 999px;
    background: #fff;
    color: #4f9b6d;
    padding: 6px 6px;
  }

  /* ホバー／タップ時は背景も緑にする（白文字が消えないように） */
  .fv-jump_nav.is-fixed .fv-jump_item:hover,
  .fv-jump_nav.is-fixed .fv-jump_item:focus,
  .fv-jump_nav.is-fixed .fv-jump_item.is-active {
    background: #6fbf8b;
    border-color: #6fbf8b;
    color: #fff;
  }

  .fv-jump_nav.is-fixed .fv-jump_item:hover .fv-jump_arrow,
  .fv-jump_nav.is-fixed .fv-jump_item:focus .fv-jump_arrow {
    color: #fff;
  }

  /* 「さらに便利に！」の帯：高さはそのままで画像だけ拡大 */
  .fv-more_img {
    background-size: 165% auto;
  }

  /* 上段にロゴ、下段に「CTA｜PC画面」の横並び。
     左カラムを display:contents で解体し、中身を row の直接の子にする */
  .fv-hoiku .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* カラム側の margin-left を0にしたので、行のマイナス相殺も解除する */
    margin-left: 0;
  }

  .container .fv-hoiku .row .fv-hoiku_left,
  .fv-hoiku .row .fv-hoiku_left {
    display: contents;
  }

  .fv-hoiku_logobox {
    order: 1;
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 18px;
  }

  /* 全幅になるとロゴが大きくなりすぎるので上限を設ける */
  .fv-hoiku_logobox img {
    width: 62%;
    max-width: 330px;
    margin: 10px auto 0;
  }

  .fv-hoiku_ctas {
    order: 2;
    flex: 0 0 42%;
  }

  .container .fv-hoiku_right {
    order: 3;
    float: none;
    flex: 0 0 58%;
    width: 58%;
    margin-left: 0;
    margin-top: 0;
  }

  .fv-hoiku_badge {
    width: 128px;
    height: 128px;
    top: -44px;
    right: -8px;
  }

  .fv-hoiku_badge .badge-main { font-size: 1.45rem; }
  .fv-hoiku_badge .badge-sub { font-size: 1.05rem; }

  /* リード文は「保育のＩＣＴ化・・・」で改行させる */
  .fv-hoiku_lead span {
    display: inline-block;
  }

  /* CTAは横並びだと窮屈なため、スマホと同じ縦積みにする */
  .fv-hoiku_ctas {
    flex-direction: column;
    gap: 14px;
  }

  .fv-hoiku_cta-label {
    margin-bottom: 6px;
  }

  /* ボタンは幅いっぱいにせず、内容に合わせて短く */
  .fv-hoiku_btn {
    width: 84%;
    max-width: 240px;
  }
}

/* ---- スマホ：保育AIバナーとグレー枠をフェードで交互に表示 ---- */
@media (max-width: 640px) {
  .fv-ai_row {
    display: block;
    position: relative;
    height: 170px;
    margin-top: 26px;      /* 吹き出しのはみ出し分 */
    margin-bottom: 22px;
  }

  .fv-ai_row > .fv-ai_banner,
  .fv-ai_row > .fv-ai_placeholder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    animation: fvAiFade 12s infinite;
  }

  .fv-ai_row > .fv-ai_banner {
    animation-delay: 0s;
  }

  .fv-ai_row > .fv-ai_placeholder {
    animation-delay: 6s;
  }

  @keyframes fvAiFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    46%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
  }

  /* 動きを減らす設定の端末では切り替えない（1枚目を表示） */
  @media (prefers-reduced-motion: reduce) {
    .fv-ai_row > .fv-ai_banner {
      opacity: 1;
      animation: none;
    }

    .fv-ai_row > .fv-ai_placeholder {
      display: none;
    }
  }
}

/* ---- 保育AIバナーの隣：スタジオアリス「egao」の告知（動画までの仮置き） ----
   背景はサイト共通のクリーム色。ロゴは丸で囲わずそのまま置く */
.fv-ai_egao {
  position: relative;
  display: block;
  background: var(--cream);
  border: none;
  border-radius: 14px;
  box-sizing: border-box;
  padding: 20px 24px 22px;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fv-ai_egao-title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 100%;
  font-size: clamp(20px, 2.9vh, 26px);
  font-weight: 900;
  color: #6fbf8b;
  line-height: 1.25;
}

.fv-ai_egao-text {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ロゴと説明文を横並びにする */
.fv-ai_egao-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: auto 0 10px;
}

/* 見出しの下にロゴを配置（囲みなし） */
.fv-ai_egao-body {
  position: static;
  transform: none;
  flex: 0 0 auto;
  width: 46%;
  max-width: 220px;
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: none;
  border-radius: 0;
}

.fv-ai_egao-logo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  box-sizing: border-box;
}

/* 「詳しくはこちら」は保育AIバナーと同じ形のピル（背景が明るいので緑地） */
.fv-ai_egao-link {
  position: relative;
  align-self: flex-end;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #6fbf8b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 22px;
  border-radius: 999px;
}

.fv-ai_egao-link::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  pointer-events: none;
}

.fv-ai_egao {
  text-decoration: none;
}

@media (hover: hover) {
  .fv-ai_egao:hover {
    opacity: 0.9;
  }
}

/* スマホ（タブレットは別途、タブレット専用ブロックで調整） */
@media (max-width: 767px) {
  .fv-ai_egao {
    padding: 16px 18px;
  }

  .fv-ai_egao-title {
    font-size: 18px;
    max-width: 100%;
  }

  .fv-ai_egao-row {
    align-items: center;
    gap: 10px;
    margin: 10px 0 0;
  }

  .fv-ai_egao-body {
    width: 44%;
    max-width: 150px;
    margin-top: 0;
  }

  .fv-ai_egao-text {
    margin: 0;
  }

  .fv-ai_egao-link {
    font-size: 14px;
    padding: 5px 16px;
  }
}

/* egaoバナー：タブレットは隣の保育AIバナーと同じ150pxに収める
   （基本スタイルを上書きするため、必ずファイル末尾に置く） */
@media (min-width: 768px) and (max-width: 979px) {
  .fv-ai_egao {
    padding: 10px 12px;
  }

  .fv-ai_egao-title {
    font-size: 15px;
    line-height: 1.3;
    max-width: 100%;
  }

  .fv-ai_egao-row {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 6px 0 0;
  }

  .fv-ai_egao-body {
    width: 40%;
    max-width: 104px;
    margin-top: 0;
  }

  .fv-ai_egao-logo {
    padding: 5px;
    border-radius: 6px;
  }

  .fv-ai_egao-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .fv-ai_egao-link {
    position: absolute;
    right: 12px;
    bottom: 8px;
    font-size: 14px;
    padding: 3px 12px;
  }
}

/* PC幅だけ改行させる改行タグ */
.pc-br { display: none; }

@media (min-width: 980px) {
  .pc-br { display: inline; }
}

/* お問い合わせフォームの下：認定・認証マーク */
.fv-form_certs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  width: min(620px, 88vw);
  margin: 70px auto 78px;
  padding: 22px 24px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  list-style: none;
}

.fv-form_certs li {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.fv-form_certs img {
  display: block;
  width: auto;
  max-width: 100%;
}

.fv-form_certs li:nth-child(1) img { height: 46px; }
.fv-form_certs li:nth-child(2) img { height: 58px; }

@media (max-width: 767px) {
  .fv-form_certs {
    gap: 14px 20px;
    margin: 48px auto 54px;
    padding: 18px 16px;
  }

  .fv-form_certs li:nth-child(1) img { height: 38px; }
  .fv-form_certs li:nth-child(2) img { height: 46px; }
}

/* 見出しタグを変えた箱所の見た目を維持する
   （h1→div / h1→p にしたことで変わる余白・太さを戻す） */
.header_container .brand_name,
.footer-bg .brand_name {
  font-weight: bold;
}

.footer-bg .brand_name {
  margin: 13px 0;
}

/* ハニーポット：人には見えないが、自動送信プログラムは埋めてしまう入力欄 */
.fv-form_hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* 送信完了・エラー画面 */
.fv-thanks {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 8vh, 80px) 20px;
  text-align: center;
}

.fv-thanks_title {
  margin: 0 0 24px;
  font-size: clamp(22px, 3.4vh, 30px);
  font-weight: 700;
  color: #4f9b6d;
}

.fv-thanks_text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.fv-thanks_note {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.8;
  color: #777;
}

.fv-thanks_errors {
  display: inline-block;
  margin: 0 0 24px;
  padding: 16px 24px;
  border: 1px solid #ffd0d0;
  border-radius: 10px;
  background: #fff6f6;
  list-style: disc;
  text-align: left;
}

.fv-thanks_errors li {
  margin: 4px 0 4px 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #d05a5a;
}

.fv-thanks_btnwrap {
  margin: 0;
}

.fv-thanks_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 32px;
  border-radius: 999px;
  background: #6fbf8b;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

@media (hover: hover) {
  .fv-thanks_btn:hover {
    opacity: 0.85;
  }
}

/* 確認画面 */
.fv-confirm {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(30px, 6vh, 60px) 0;
}

.fv-confirm .fv-thanks_title,
.fv-confirm .fv-thanks_text {
  text-align: center;
}

.fv-confirm_value {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  word-break: break-all;
}

.fv-confirm_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.fv-confirm_back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  /* 送信ボタンと高さを揃える（送信は上下14px＋枠2px） */
  padding: 14px 32px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eef7f1 100%);
  color: #4f9b6d;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  /* 送信ボタンと同じ質感の影を付ける */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18),
    inset 0 2px 3px rgba(255, 255, 255, 0.9),
    inset 0 -3px 5px rgba(79, 155, 109, 0.18);
  transition: transform 0.2s, opacity 0.2s;
}

@media (hover: hover) {
  .fv-confirm_back:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }
}

/* 個人情報の取り扱いの案内文 */
.fv-form_policy {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

.fv-form_policy a {
  color: #ff9494;
  font-weight: 700;
}

/* 1文ごとに必ず行を分ける */
.fv-form_policy-line {
  display: block;
}

/* 文の中は、幅が足りなければ文節単位で折り返す */
.fv-form_policy-line > span {
  display: inline-block;
}

/* reCAPTCHA（「私はロボットではありません」） */
.fv-form_recaptcha {
  display: flex;
  justify-content: center;
  margin: 22px 0 26px;
}

@media (max-width: 360px) {
  /* 幅の狭い端末では果がはみ出すため縮小する */
  .fv-form_recaptcha .g-recaptcha {
    transform: scale(0.88);
    transform-origin: center top;
  }
}

/* 選べる4パターン：丸にホバー（タップ）すると写真を出す */
.fv-char_pattern-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translate(-50%, 6px);
  z-index: 20;
  width: 148px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}

.fv-char_pattern-pop::after {
  /* 下向きの三角（どの丸から出ているかを示す） */
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
}

.fv-char_pattern-pop img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: contain;
  background: #fff;
}

.fv-char_pattern-cap {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #4f9b6d;
  line-height: 1.3;
}

.fv-char_pattern.is-open .fv-char_pattern-pop,
.fv-char_pattern:focus-visible .fv-char_pattern-pop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (hover: hover) {
  .fv-char_pattern:hover .fv-char_pattern-pop {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 640px) {
  .fv-char_pattern-pop {
    width: 124px;
  }

  .fv-char_pattern-pop img {
    height: 86px;
  }
}

