@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ルート：全体レイアウト（背景画像は適宜変更） */
.lp-fixed-layout {
  height: 100svh; /* iOSのアドレスバー対策でsvh推奨 */
  width: 100%;
  position: relative;
  background: url("https://2jikaienta.com/wp-content/uploads/2026/04/bg__img-1-scaled.png")
    center/cover no-repeat;
  overflow: hidden; /* 本体スクロールを抑止し、中央に集約 */
}

/* ======================= #  ===*/

:root {
  --center-width: clamp(320px, 30vw, 520px);
  --side-min: 120px;
  --side-width: max(var(--side-min), calc((100vw - var(--center-width)) / 2));
  --center-area-width: calc(100vw - (var(--side-width) * 2));
}

/* 左固定カラム */
.lp-fixed-layout__left {
  position: fixed;
  inset: 0 auto 0 0;
  width: max(var(--side-min), calc((100vw - var(--center-width)) / 2));
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

/* 右固定カラム */
.lp-fixed-layout__right {
  position: fixed;
  inset: 0 0 0 auto;
  width: max(var(--side-min), calc((100vw - var(--center-width)) / 2));
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

/* 中央エリア */
.lp-fixed-layout__center {
  margin-left: max(var(--side-min), calc((100vw - var(--center-width)) / 2));
  margin-right: max(var(--side-min), calc((100vw - var(--center-width)) / 2));
  height: 100svh;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}

/* 中央スクロール領域 */
.lp-fixed-layout__scrollarea {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.88);
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* ======================= #  ===*/

/* 中央のスクロール領域（ここが唯一のスクロール容器） */
.lp-fixed-layout__scrollarea {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.88); /* 見やすさ調整 */
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch; /* iOS慣性 */
  overscroll-behavior: contain; /* バウンド抑制（好みで） */
}

/* 任意：中央内の見出し/段落の余白など */
.lp-fixed-layout__scrollarea h1,
.lp-fixed-layout__scrollarea h2,
.lp-fixed-layout__scrollarea h3 {
  margin: 0 0 1em;
}
.lp-fixed-layout__scrollarea p {
  margin: 0 0 1em;
  line-height: 1.8;
}

/* タッチ系の誤作動を減らす（必要に応じて） */
.lp-fixed-layout__left,
.lp-fixed-layout__right {
  touch-action: pan-y; /* 縦スクロール意図を明示 */
}

#lp-content {
  padding: 0;
}
.lp-content__postContent {
  padding: 0;
}

/* モバイル対応（左右を非表示、中央を全幅に） */
@media (max-width: 599px) {
  .lp-fixed-layout__left,
  .lp-fixed-layout__right {
    display: none;
  }
  .lp-fixed-layout__center {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  #lp-content {
    padding: 0;
  }
  .lp-content__postContent {
    padding: 0;
  }
  .lp-fixed-layout__scrollarea {
    padding: 0;
  }
}

/* タブレット対応（600px〜1199px）
   左右の背景は見せる
   中央は453px固定
   左右の中身は非表示 */
@media (min-width: 600px) and (max-width: 1199px) {
  :root {
    --center-width: 453px;
    --side-width: calc((100vw - var(--center-width)) / 2);
    --center-area-width: var(--center-width);
  }

  .lp-fixed-layout__left,
  .lp-fixed-layout__right {
    display: flex;
    width: var(--side-width);
  }

  /* 左右セクションの中身だけ消す */
  .lp-fixed-layout__left > *,
  .lp-fixed-layout__right > * {
    display: none;
  }

  .lp-fixed-layout__center {
    width: var(--center-width);
    margin-left: auto;
    margin-right: auto;
    height: 100svh;
  }

  .lp-fixed-layout__scrollarea {
    width: 100%;
    padding: 0;
  }

  #lp-content,
  .lp-content__postContent {
    padding: 0;
  }
}

/* ===============================================
# base
=============================================== */
#breadcrumb {
  display: none;
}
#content {
  margin: 0;
  padding: 0 !important;
}

.l-mainContent__inner {
  width: 100vw;
}

.c-pageTitle {
  display: none;
}

.post_content {
  margin-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#main_content {
  margin: 0;
}

#header {
  display: none;
}
#fix_header {
  display: none;
}

.section {
  padding: 5rem 0.8rem;
}

.c-scrollHint span {
  font-size: 1rem;
  font-weight: bold;
  color: red;
}

/* ======================= フォント===*/
html {
  color: #3e3a39;
}
.c-section-title {
  margin-bottom: 3rem !important;
}
.c-section-title__label {
  color: #c4a77d;
}
.c-section-title__lead {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0 !important;
}
.c-section-title__main {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5 !important;
}

.c-section-title .deco {
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  background-image:
    linear-gradient(#fff 0 100%),
    linear-gradient(135deg, #9dcff2 10%, #c8e6c9 100%);
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size:
    calc(100% - 0.5rem) calc(100% - 0.5rem),
    100% 100%;
  color: #333;
  text-align: center;
  display: block;
}

/* ======================= 余白 ===*/
.u-mb-3 {
  margin-bottom: 3rem !important  ;
}

/* ======================= デコレーション ===*/
.c-underline {
  background: linear-gradient(
    transparent 60%,
    #f5e8c7 0%
  ); /* #F5E8C7を好きな色に */
  display: inline;
}

@media (max-width: 900px) {
  #header {
    display: block;
  }
}

/* ===============================================
# CTA
=============================================== */
.cta__container {
  padding: 3rem 0.8rem;
  background-color: #efede9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='72' viewBox='0 0 36 72'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23b89f80' fill-opacity='0.13'%3E%3Cpath d='M2 6h12L8 18 2 6zm18 36h12l-6 12-6-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.p-cta-achievements {
  margin-top: 2rem !important;
}

.p-cta__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5 !important;
  position: relative;
  display: block;
  padding: 0 65px;
  text-align: center;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0rem !important;
}
.p-cta__item-title:before,
.p-cta__item-title:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: "";
  border-top: solid 2px #b89f80;
  border-bottom: solid 2px #b89f80;
}

.p-cta__item-title:before {
  left: 0;
}

.p-cta__item-title:after {
  right: 0;
}
.p-cta__item-title span {
  font-size: 2.5rem;
  color: #b89f80;
}
.p-cta__item {
  position: relative;
  border-radius: 15px;
  font-size: 1.25rem;
  box-shadow: 0 8px 25px rgba(184, 159, 128, 0.3);
  padding-top: 1rem !important;
  margin-top: 2rem !important;
}

.p-cta__item-label {
  position: absolute;
  top: -1rem;
  font-size: 0.85rem;
  text-align: center;
  background: rgba(255, 153, 2, 0.8);
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 15px;
  line-height: 1.3 !important;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
}
.p-cta__item-label span {
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.c-microcopy-top {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 3.5rem !important;
  margin-bottom: 0 !important;
}
.c-microcopy-bottom {
  font-size: 0.9rem;
  margin-top: -2em !important;
}

.p-cta__sub-btn-title {
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #333;
  color: #333;
  text-align: center;
  line-height: 1.5 !important;
  margin-bottom: 2rem !important;
}
.p-cta__sub-btn-title:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 10px;
  border-right: 3px solid #333;
  background-color: white;
  content: "";
}

.p-cta__sub-btn-title .fa-phone-volume,
.p-cta__sub-btn-title .fa-line {
  font-size: 1.5rem;
}
.fa-phone-volume {
  color: #ff8c00;
}
.fa-line {
  color: #00c300;
}

/* ======================= footer ===*/

.c-fix-cta {
  display: none;
}

@media (max-width: 1200px) {
  .c-fix-cta {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    z-index: 9999;
    box-sizing: border-box;
    transition: opacity 0.25s ease;
  }

  .c-fix-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .c-fix-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: 100%;
    padding: 14px 18px;
    background: #f74a4a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.4;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .c-fix-cta__btn i {
    font-size: 0.95em;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 88px;
  }
}
/* ===============================================
# worries
=============================================== */
.p-worries {
  position: relative;
  padding-top: 4rem !important;
}

.custom-shape-divider-top-1774936864 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1774936864 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 25px;
}

.custom-shape-divider-top-1774936864 .shape-fill {
  fill: #b89f80;
}
.p-worries__wrapper {
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%);
  border-radius: 10px;
  box-shadow: 0 10px 30px -5px rgba(184, 159, 128, 0.15);
  background-color: #ffffff;
}

.p-worries__list {
  padding-left: 0 !important;
}

.p-worries__list li {
  font-size: 1.25rem !important;
}
.p-worries__wrapper {
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 50% 100%, 0 95%);
}
.p-worries__container {
  flex-direction: column;
}
.p-worries__container figure {
  width: 12rem;
}
.p-worries .c-balloon__shapes {
  top: 6em;
  right: 55px !important;
  transform: rotate(-105deg) !important;
}
.c-balloon__body {
  padding-left: 0;
  padding-right: 0;
  display: block;
}

@media (min-width: 2100px) {
  .shapedividers_com-1641::before {
    background-size: 100% calc(2vw + 60px);
  }
}

/* ===============================================
# promise
=============================================== */
.p-promise .c-section-title__main {
  line-height: 1.2 !important;
}
.p-promise__img {
  margin-top: 2rem !important;
}
.p-promise__img img {
  border-radius: 20px;
}

/* ===============================================
# reason
=============================================== */

.p-reason {
  margin-bottom: 0;
}

.p-reason__item {
  margin-top: 3rem;
  border-radius: 20px;
}

.p-reason__item .wp-block-heading {
  padding: 0.8rem 0 1rem 0;
  margin-bottom: 0.2rem;
  background-image: linear-gradient(90deg, #c4a77d 0 20%, #f5e8c7 20%);
  background-repeat: no-repeat;
  background-size: 100% 10%;
  background-position: bottom;
  margin-bottom: 1.5rem;
  color: #3e3a39;
}

.p-reason__item .wp-block-heading::before {
  content: none;
}

.reason__item .wp-block-image {
  margin-bottom: 2rem;
}

.p-reason__item .wp-block-heading span {
  text-emphasis: dot #c4a77d;
  font-size: 1.35em;
}

/* ===============================================
# voice
=============================================== */
.p-voice__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 1px dotted rgba(197, 167, 125);
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
}
.p-voice__item-title p {
  line-height: 1.3;
}
.p-voice__item-title span {
  font-size: 1.35em;
  letter-spacing: 0.05em;
}

.p-voice .swl-inline-icon:after {
  background: #c4a77d;
}

/* ======================= test ===*/
.fukidashi-01-13 {
  position: relative;
  padding: 12px 16px 12px 30px;

  &::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100px;
    height: 1px;
    box-sizing: border-box;
    background-color: #333333;
    rotate: -14deg;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 120px;
    height: 1px;
    box-sizing: border-box;
    background-color: #333333;
    rotate: 14deg;
  }

  & > .ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    &::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 0;
      width: 160px;
      height: 1px;
      box-sizing: border-box;
      background-color: #333333;
      rotate: -12deg;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 160px;
      height: 1px;
      box-sizing: border-box;
      background-color: #333333;
      rotate: 12deg;
    }
  }
}

.fukidashi-01-13-rev {
  position: relative;
  padding: 12px 30px 12px 16px; /* 左右のpadding入れ替え */

  &::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 0; /* left: 0 → right: 0 */
    width: 100px;
    height: 1px;
    box-sizing: border-box;
    background-color: #333333;
    rotate: 14deg; /* -14deg → 14deg */
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: 0; /* left: 0 → right: 0 */
    width: 120px;
    height: 1px;
    box-sizing: border-box;
    background-color: #333333;
    rotate: -14deg; /* 14deg → -14deg */
  }

  & > .ornament {
    position: absolute;
    top: 0;
    right: 0; /* left: 0 → right: 0 */
    width: 100%;
    height: 100%;

    &::before {
      content: "";
      position: absolute;
      top: -10px;
      right: 0; /* left: 0 → right: 0 */
      width: 160px;
      height: 1px;
      box-sizing: border-box;
      background-color: #333333;
      rotate: 12deg; /* -12deg → 12deg */
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -10px;
      right: 0; /* left: 0 → right: 0 */
      width: 160px;
      height: 1px;
      box-sizing: border-box;
      background-color: #333333;
      rotate: -12deg; /* 12deg → -12deg */
    }
  }
}

/* ======================= 左調整 ===*/
.p-voice-item__title--left {
  margin-left: -0.3em !important;
}
.p-voice-item__title--left span {
  margin-left: 0.6em;
}

/* ===============================================
# plan
=============================================== */
.p-plan {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-plan__average-wrapper {
  border-radius: 15px;
}
.p-plan__average-wrapper dt {
  font-size: 1.3rem;
  font-weight: bold;
}

.p-plan__average-wrapper dd {
  font-size: 2rem;
  font-weight: bold;
  color: #c4a77d;
  padding: 0;
}

.p-plan__pay-wrapper {
  position: relative;
}
.p-plan__pay-img {
  position: absolute;
  top: -3rem;
  right: 0;
}

/* 料金説明転換 */
.c-lead-intro {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.08em; /* ←広げて“溜め” */
  line-height: 1.6; /* ←ゆったり */
  margin-bottom: 1.2em;
  text-decoration: 4px underline wavy rgba(255, 90, 95, 0.5);
  text-underline-offset: 5px;
}

/* ======================= タブ ===*/

.p-plan__tab {
  margin-top: 5rem;
}
.p-plan__tab .c-tabBody {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: none !important;
}
.p-plan__tab .c-tabList__button {
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 15px 15px 0 0;
}

/* アクティブボタン */
.c-tabList__button[aria-selected="true"] {
  background-color: #b89f80 !important; /* 任意 */
  color: #fff;
}
.c-tabList__button[aria-selected="false"] {
  background-color: #f4f1ed !important; /* 任意 */
  color: #a09b97 !important;
}
/* 右のタブ（2番目）だけアクティブ色を変更 */
.c-tabList__item:nth-child(2) .c-tabList__button[aria-selected="true"] {
  background-color: #9ea98f !important;
}

.p-plan-simulation
  .c-tabList__item:nth-child(1)
  .c-tabList__button[aria-selected="true"] {
  background-color: #b89f80 !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(2)
  .c-tabList__button[aria-selected="true"] {
  background-color: #c9b295 !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(3)
  .c-tabList__button[aria-selected="true"] {
  background-color: #9ea98f !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(4)
  .c-tabList__button[aria-selected="true"] {
  background-color: #b3bca5 !important;
}

/* 三角（疑似要素） */
.c-tabList__button[aria-selected="true"]::before {
  border-top: 8px solid #b89f80 !important;
}

.p-plan-simulation
  .c-tabList__item:nth-child(1)
  .c-tabList__button[aria-selected="true"]::before {
  border-top-color: #b89f80 !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(2)
  .c-tabList__button[aria-selected="true"]::before {
  border-top-color: #c9b295 !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(3)
  .c-tabList__button[aria-selected="true"]::before {
  border-top-color: #9ea98f !important;
}
.p-plan-simulation
  .c-tabList__item:nth-child(4)
  .c-tabList__button[aria-selected="true"]::before {
  border-top-color: #b3bca5 !important;
}

.p-plan__item {
  --bg-gradient: linear-gradient(#eae5e0 0 100%);
  margin: 0.5rem;
  padding: 1.5rem;
  background-image:
    var(--bg-gradient), var(--bg-gradient), var(--bg-gradient),
    var(--bg-gradient);
  background-repeat: no-repeat;
  background-size:
    100% 1px,
    1px 100%,
    100% 1px,
    1px 100%;
  background-position:
    left top 5px,
    right 5px top,
    left bottom 5px,
    left 5px top;
  width: calc(100% + 32px) !important;
  max-width: calc(100% + 32px) !important;
  margin-left: -16px !important;
  margin-right: -16px !important;
  box-sizing: border-box !important;
  position: relative;
}

.p-plan__item-no {
  position: absolute;
  font-size: 1.3rem;
  font-weight: bold;
  top: 0.25rem;
  left: 3.5rem;
  z-index: 10;
  color: rgba(0, 0, 0, 0.6);
}
.p-plan__item-no span {
  font-size: 1.35em;
}

.p-plan__item > .wp-block-group__inner-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.c-plan__item-title {
  clip-path: polygon(0 0, 100% 1%, 95% 50%, 100% 100%, 0 98%, 5% 50%);
  background: linear-gradient(135deg, #b89f80 0%, #d4c3af 100%) !important;
  box-shadow: 0 4px 10px rgba(184, 159, 128, 0.3);
  /* background-color: #baad97 !important; */
  padding: 0.5em 0;
}
.c-plan__item-title-simple {
  clip-path: polygon(0 0, 100% 1%, 95% 50%, 100% 100%, 0 98%, 5% 50%);
  background: linear-gradient(135deg, #9ea98f 0%, #bcc4b1 100%) !important;
  box-shadow: 0 4px 10px rgba(158, 169, 143, 0.3);
  /* background-color: #baad97 !important; */
  padding: 0.5em 0;
}
.p-plan__item--label {
  padding: 0.5em 0 !important;
  position: relative;
  border-bottom: 3px solid #baad97;
  background-color: white;
  color: #333;
  text-align: center;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  font-size: 1.35rem;
}
.p-plan__item--label::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 10px;
  border-right: 3px solid #baad97;
  background-color: white;
  content: "";
}
.p-plan__item--label-simple {
  padding: 0.5em 0 !important;
  position: relative;
  border-bottom: 3px solid #9ea98f;
  background-color: white;
  color: #333;
  text-align: center;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  font-size: 1.35rem;
}
.p-plan__item--label-simple::before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 10px;
  border-right: 3px solid #9ea98f;
  background-color: white;
  content: "";
}

.p-plan__item .fa-solid {
  font-size: 1.3rem;
  margin-right: 0.2em;
  color: #9ea98f;
}
.p-plan__item--label-simple .fa-solid {
  color: #b89f80;
}

/* サービス内容 */
.p-plan__service {
  margin-top: 3rem;
}
.p-plan__service-title-sub span.vk-heading__text-wrapper {
  background-color: #9ea98f;
  border-radius: 30px;
  padding-inline: 1.5em;
  color: #fff;
}

.p-plan__service-title-sub02 {
  margin-top: 3rem;
}
.p-plan__service-title-sub02 span.vk-heading__text-wrapper {
  background-color: #b89f80;
}
.p-plan__service-inner .swell-block-column {
  height: clamp(10rem, calc(12.538rem - 2.689vw), 12rem);
  border: 2px solid transparent;
  border-radius: 12px;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #7ec2b9 0%, #d5d39d 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.p-plan__service-img {
  margin-bottom: 0;
}
.p-plan__service-text {
  font-size: 0.85rem;
}

/* ======================= シュミレーション ===*/
.p-plan-simulation {
  margin-bottom: 1.5rem;
}

.p-plan-simulation .swell-block-accordion__title {
  background-color: #ffddbb;
  color: #ff5a5f;
}

.c-plan__guide-wrapper {
  text-align: center;
  margin-top: 3rem !important;
}
.p-plan__guide {
  margin-bottom: 0 !important;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555555;
}
.p-plan__guide span {
  background-color: #b89f80;
  border-radius: 4px;
  padding: 0 0.3em;
  color: #fff;
  font-size: 2.5rem;
}
.p-plan__guide .guide-simple {
  background: #9ea98f;
}
.c-plan__guide-wrapper .fa-sort-down {
  color: #b89f80;
}

/* ======================= ソリューションテーブル ===*/

/* 2列目 */
.my-table th:nth-child(2) {
  background: #b89f80;
  color: #fff;
  text-align: center !important;
}
.my-table td:nth-child(2) {
  background: #f6f1ea;
}

/* 3列目（2列目グループの近似色） */
.my-table th:nth-child(3) {
  background: #c9b295;
  color: #fff;
  text-align: center !important;
}
.my-table td:nth-child(3) {
  background: #fbf7f2;
}

/* 4列目（メインカラー変更） */
.my-table th:nth-child(4) {
  background: #9ea98f;
  color: #fff;
  text-align: center !important;
}
.my-table td:nth-child(4) {
  background: #f3f6f0;
}

/* 5列目（グループ近似色） */
.my-table th:nth-child(5) {
  background: #b3bca5;
  color: #fff;
  text-align: center !important;
}
.my-table td:nth-child(5) {
  background: #f7f9f4;
}
/* 6列目（他社） */
.my-table th:nth-child(6) {
  background: #bdbdbd;
  color: #fff;
  text-align: center !important;
}
.my-table td:nth-child(6) {
  background: #f5f5f5;
}

@media (max-width: 900px) {
  .plan__item {
    padding-left: 0.3rem !important;
    padding-right: 0.3rem !important;
  }
}

/* ======================= 人数特典 ===*/

.p-price-table {
  --price-table-people-width: 140px;
  --price-table-price-width: 140px;
  --price-table-benefit-width: 680px;
  width: 100%;
  max-width: 100%;
  background: #fff;
  color: #333;
}

.p-price-table__scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.p-price-table__inner {
  min-width: calc(
    var(--price-table-people-width) + var(--price-table-price-width) +
      var(--price-table-benefit-width)
  );
  background: #fff;
}

.p-price-table__head,
.p-price-table__row {
  display: grid;
  grid-template-columns:
    var(--price-table-people-width) var(--price-table-price-width)
    minmax(var(--price-table-benefit-width), 1fr);
  column-gap: 0;
  align-items: stretch;
}

.p-price-table__head {
  background: #fff;
}

.p-price-table__cell {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #cfcfcf;
  box-sizing: border-box;
}

.p-price-table__head > .p-price-table__cell:first-child,
.p-price-table__row > .p-price-table__cell:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 1px 0 0 #cfcfcf;
}

.p-price-table__head > .p-price-table__cell:first-child {
  z-index: 2;
  background: #f1f1f1;
}

.p-price-table__head > .p-price-table__cell {
  justify-content: center;
  background: #f1f1f1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.p-price-table__head > .p-price-table__cell + .p-price-table__cell {
  border-left: 4px solid #fff;
}

.p-price-table__cell--people,
.p-price-table__cell--price {
  justify-content: center;
  background: #fff;
  font-size: 1rem;
  color: #333;
  line-height: 1.35;
}

.p-price-table__cell--benefit {
  min-width: 0;
  justify-content: flex-start;
}

.p-price-table__price {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
}

.p-price-table__benefits {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.p-price-table__plus {
  font-size: 1rem;
  line-height: 1;
  color: #333;
}

.p-benefit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 34px;
  padding: 0 16px;
  border: 2px solid #2a9b98;
  border-radius: 999px;
  background: #fff;
  color: #2a9b98;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
}

.p-benefit-btn.is-blue {
  border-color: #4b78e6;
  color: #4b78e6;
}

.p-benefit-btn.is-purple {
  border-color: #6f57d9;
  color: #6f57d9;
}

.p-price-table__row.is-price-down .p-price-table__cell--price,
.p-price-table__price-note {
  position: relative;
}

.p-price-table__row.is-price-down .p-price-table__cell--price::after,
.p-price-table__price-note::after {
  content: "Price Down ↷";
  position: absolute;
  left: 16px;
  bottom: -16px;
  z-index: 2;
  padding-right: 10px;
  background: #fff;
  color: #26b7b2;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.p-price-table__scroll::-webkit-scrollbar {
  height: 8px;
}

.p-price-table__scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
  border-radius: 999px;
}

.p-price-table__scroll::-webkit-scrollbar-track {
  background: #ececec;
}

/* ===============================================
# solution
=============================================== */
.p-solution__item-title {
  position: relative;
  padding: 0.5rem 0 1rem 1.5rem;
  border-bottom: 3px solid #baad97;
  border-left: 5px solid #baad97;
  border-radius: 0 20px 0 20px;
  line-height: 1.5 !important;
  font-weight: bold;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  background: rgba(186, 173, 151, 0.1);
}

.p-solution__item-title :before {
  position: absolute;
  right: 50px;
  bottom: -21px;
  width: 0;
  height: 0;
  content: "";
  border-width: 21px 21px 0 0;
  border-style: solid;
  border-color: #baad97 transparent transparent transparent;
}

.p-solution__item-title :after {
  position: absolute;
  right: 54px;
  bottom: -14px;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 14px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.p-solution__item-title span {
  font-size: 1.5em;
}

.c-solution__item-label--wrapper {
  margin-top: 1.8rem !important;
}
.c-solution__item-label {
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: 2px dotted rgba(186, 173, 151, 1);
  display: inline-block;
  margin-bottom: 0.8rem !important;
  line-height: 1.5 !important;
  margin-top: 1.8rem !important;
  padding-bottom: 0.3em;
}
.c-solution__item-label span {
  font-size: 1rem;
}

.c-solution-item-planner figure img,
.c-solution-item-host figure img {
  border-radius: 10px;
}
.p-solution__staff-lead {
  font-size: 0.85rem;
  margin-bottom: 0 !important;
  line-height: 1 !important;
}
.p-solution__staff-img img {
  border-radius: 10px;
}

.p-solution__table th {
  text-align: left !important;
}

.p-solution .fa-solid {
  font-size: 1.5rem;
  color: #98ce98;
  margin-right: 0.3em;
}

@media (max-width: 900px) {
  .p-solution__table th:first-child,
  .p-solution__table td:first-child {
    width: 50vw !important;
    min-width: 50vw !important;
  }
}

@media (max-width: 575.98px) {
  .vk_flow .vk_flow_frame {
    flex-wrap: nowrap !important;
  }
}

/* ===============================================
# flow
=============================================== */
.p-flow {
  padding-top: 3rem !important;
}

.swell-block-step__number {
  color: #007c45;
}

.swell-block-step__title {
  color: #005842;
}

/* ===============================================
# footer-cta
=============================================== */
.p-footer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.p-footer .c-section-title {
  margin-bottom: 4rem !important;
}
.p-footer .c-section-title__label {
  background: #fff;
  border-radius: 10px;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 0.8em;
}
.p-footer .c-section-title__main {
  line-height: 1 !important;
}
.p-footer .c-section-title__main span {
  font-size: 0.8em !important;
}

.p-footer-cta__text-wrapper {
  padding: 1rem;
  max-width: 500px;
}
.p-footer-cta__text p {
  line-height: 2.15;
}

.c-microcopy-top {
  margin-top: 1.5rem !important;
}
/* ===============================================
# 右サイド
=============================================== */

.lp-fixed-layout__right .side-nav {
  width: 100% !important;
  padding: 20px 12px !important;
  box-sizing: border-box !important;
}
.lp-fixed-layout__right .side-nav ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.lp-fixed-layout__right .side-nav li {
  margin-bottom: 0.75rem;
}
.lp-fixed-layout__right .side-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: background 0.2s;
}
.lp-fixed-layout__right .side-nav a:hover {
  background: #ff5a5f;
  color: #fff;
}
/* CTA強調 */
.lp-fixed-layout__right .side-nav .is-cta > a {
  background: #ff5a5f;
  color: #fff;
}
.lp-fixed-layout__right .side-nav .is-cta > a:hover {
  background: #e14b50;
}

.lp-fixed-layout__right .side-nav li {
  margin-bottom: 1.2rem !important;
  text-align: center;
}

.lp-fixed-layout__right .side-nav a {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 0 20px 0 20px;
}

.lp-fixed-layout__right .side-nav .cta-line > a {
  background: #06c755;
  color: #fff;
}
.lp-fixed-layout__right .side-nav .cta-tel > a {
  background: #ff8c00;
  color: #fff;
}

.lp-fixed-layout__right .fa-envelope,
.lp-fixed-layout__right .fa-line,
.lp-fixed-layout__right .fa-phone {
  font-size: 1.2rem;
  margin-right: 0.2em;
}
.lp-fixed-layout__right .fa-line {
  color: #fff;
}

/* スマホは右サイド自体を非表示（ハンバーガーに任せる） */
@media (max-width: 900px) {
  .lp-fixed-layout__right {
    display: none;
  }
}

/* ===============================================
# 左サイド
=============================================== */
.c-left-side__label {
  font-size: 0.85rem;
  margin-bottom: 0.3em;
}

/* ===============================================
# ユーティリティ
=============================================== */
.u-margin-adjustment__mt-0 {
  margin-top: 0 !important;
}
.u-margin-adjustment__mb-0 {
  margin-bottom: 0 !important;
}

/* ===============================================
# 問い合わせ
=============================================== */
/* ===============================================
# 問い合わせ
=============================================== */
.cf7-form-wrap {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 0, 0, 0.018) 0,
      rgba(0, 0, 0, 0.018) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 0, 0, 0.012) 0,
      rgba(0, 0, 0, 0.012) 1px,
      transparent 1px
    ),
    linear-gradient(180deg, #fdfdfb 0%, #f8f7f2 100%);
  background-size:
    28px 28px,
    34px 34px,
    auto;
  padding: 20px 0 56px;
}

.cf7-multistep {
  --cf7-panel: rgba(255, 255, 255, 0.96);
  --cf7-main: #baad97;
  --cf7-main-dark: #8f7b5d;
  --cf7-line: #ebe4d8;
  --cf7-line-strong: #dccfbb;
  --cf7-text: #4d463d;
  --cf7-sub: #7f766c;
  --cf7-danger: #c86d5c;
  --cf7-shadow: 0 18px 40px rgba(90, 79, 60, 0.07);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

#cf7-multistep-form p {
  margin: 0;
}

.cf7-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cf7-side-box,
.cf7-step-card {
  background: var(--cf7-panel);
  border: 1px solid var(--cf7-line);
  border-radius: 24px;
  box-shadow: var(--cf7-shadow);
}

.cf7-side-box {
  padding: 18px 18px 14px;
}

.cf7-side-lead {
  margin: 0 0 4px;
  color: var(--cf7-main-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf7-side-title {
  margin: 0 0 16px;
  color: var(--cf7-text);
  font-size: 24px;
  line-height: 1.4;
}

.cf7-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #eee9df;
  overflow: hidden;
  margin-bottom: 16px;
}

.cf7-progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #d4c7b4 0%, #baad97 100%);
  transition: width 0.3s ease;
}

.cf7-progress-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cf7-progress-steps li {
  text-align: center;
  color: var(--cf7-sub);
  font-size: 11px;
}

.cf7-progress-steps li span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  border: 1px solid var(--cf7-line-strong);
  background: #fff;
  color: var(--cf7-main-dark);
  font-weight: 700;
}

.cf7-progress-steps li strong,
.cf7-progress-steps li small {
  display: block;
}

.cf7-progress-steps li strong {
  font-size: 12px;
  color: var(--cf7-text);
}

.cf7-progress-steps li small {
  margin-top: 2px;
  font-size: 10px;
  color: var(--cf7-sub);
}

.cf7-progress-steps li.is-active span,
.cf7-progress-steps li.is-done span {
  background: linear-gradient(180deg, #ccb996 0%, #b39f7f 100%);
  color: #fff;
  border-color: #b39f7f;
}

.cf7-main {
  width: 100%;
  max-width: 760px;
}

.cf7-step {
  display: none;
}

.cf7-step.is-active {
  display: block;
}

.cf7-step-card {
  padding: 24px 20px;
}

.cf7-step-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cf7-line);
}

.cf7-step-kicker {
  margin: 0 0 6px;
  color: var(--cf7-main-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cf7-step-title {
  margin: 0 0 8px;
  color: var(--cf7-text);
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.cf7-step-text {
  margin: 0;
  color: var(--cf7-sub);
  font-size: 14px;
  line-height: 1.8;
}

.cf7-multistep .form-row {
  margin-bottom: 0;
  padding: 20px 0;
  border-bottom: 1px solid #f0ebe3;
}

.cf7-multistep .form-row:last-child {
  border-bottom: 0;
}

.cf7-label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  width: auto;
  max-width: 100%;
  margin-bottom: 14px;
  color: #3f392f;
  font-weight: 700;
  line-height: 1.4;
}

.cf7-label-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 0 auto;
}

.cf7-multistep .title {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.cf7-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  margin-left: 2px;
  flex: 0 0 auto;
}

.cf7-badge-required {
  background: #f7e3df;
  color: #b85d4d;
  border: 1px solid #e8c1b9;
}

.cf7-badge-optional {
  background: #f4f1ea;
  color: #7a6d5a;
  border: 1px solid #ddd2c2;
}

.cf7-multistep .field-note {
  display: block;
  margin-top: 8px;
  color: var(--cf7-sub);
  font-size: 12px;
  line-height: 1.75;
}

.cf7-multistep input[type="text"],
.cf7-multistep input[type="email"],
.cf7-multistep input[type="tel"],
.cf7-multistep input[type="date"],
.cf7-multistep select,
.cf7-multistep textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--cf7-line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--cf7-text);
  font-size: 16px;
  line-height: 1.6;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.cf7-multistep textarea {
  min-height: 140px;
}

.cf7-multistep input::placeholder,
.cf7-multistep textarea::placeholder {
  color: #a89c8b;
}

.cf7-multistep input:focus,
.cf7-multistep select:focus,
.cf7-multistep textarea:focus {
  outline: none;
  border-color: var(--cf7-main);
  box-shadow: 0 0 0 4px rgba(186, 173, 151, 0.18);
  background: #fff;
}

.cf7-multistep .name-fields,
.cf7-multistep .form-row-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cf7-choice-grid .wpcf7-form-control-wrap {
  display: block;
}

.cf7-choice-grid .wpcf7-radio,
.cf7-choice-grid .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cf7-multistep .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7-multistep .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--cf7-line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 8px 18px rgba(186, 173, 151, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.cf7-multistep .wpcf7-list-item label:hover {
  border-color: var(--cf7-main);
  box-shadow: 0 10px 24px rgba(186, 173, 151, 0.1);
}

.cf7-multistep input[type="checkbox"],
.cf7-multistep input[type="radio"] {
  margin: 0;
  accent-color: var(--cf7-main);
}

.cf7-nav {
  margin-top: 24px;
}

.cf7-nav-right {
  display: flex;
  justify-content: flex-end;
}

.cf7-nav-right .cf7-btn {
  width: min(100%, 320px);
}

.cf7-nav-split,
.cf7-nav-confirm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cf7-btn,
input.cf7-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  text-align: center;
}

.cf7-btn:hover,
input.cf7-btn:hover {
  transform: translateY(-1px);
}

.cf7-back {
  background: #fff;
  color: #5f5548;
  box-shadow: inset 0 0 0 1.5px #d9ccb8;
}

.cf7-next {
  background: linear-gradient(180deg, #8ca198 0%, #74877f 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(116, 135, 127, 0.22);
}

.cf7-submit {
  background: linear-gradient(180deg, #c7a15e 0%, #b68b3f 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(182, 139, 63, 0.24);
}

.cf7-edit {
  min-height: 52px;
  font-size: 0.95rem;
  background: #f7f3ec;
  color: #5f5548;
  box-shadow: inset 0 0 0 1px #ddd2c1;
}

.cf7-confirm {
  display: grid;
  gap: 0;
  border: 1px solid #e8e0d3;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.cf7-confirm-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #efe8dc;
}

.cf7-confirm-row:last-child {
  border-bottom: 0;
}

.cf7-confirm-row dt {
  padding: 12px 16px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #8a7a65;
  background: #faf7f1;
}

.cf7-confirm-row dd {
  margin: 0;
  padding: 0 16px 14px;
  color: #4d463d;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

.cf7-confirm-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 16px;
}

.cf7-submit-wrap {
  margin-top: 0;
}

.cf7-submit-wrap .cf7-submit {
  width: 100%;
  min-height: 64px;
}

.cf7-multistep .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--cf7-danger);
  font-size: 12px;
}

.cf7-multistep .wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .cf7-step-card {
    padding: 20px 16px;
  }

  .cf7-step-title,
  .cf7-multistep .title {
    font-size: 1.5rem;
  }

  .cf7-nav-split,
  .cf7-nav-confirm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cf7-confirm-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cf7-btn,
  input.cf7-btn {
    min-height: 58px;
    font-size: 1rem;
    padding: 0 14px;
  }

  .cf7-edit {
    min-height: 50px;
    font-size: 0.82rem;
    padding: 0 10px;
  }

  .cf7-multistep .wpcf7-list-item label {
    min-height: 72px;
    padding: 14px 14px;
  }

  .cf7-submit-wrap .cf7-submit {
    min-height: 58px;
  }
}

@media (min-width: 768px) {
  .cf7-choice-grid .wpcf7-radio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cf7-choice-grid-3 .wpcf7-checkbox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cf7-confirm-row {
    grid-template-columns: 220px 1fr;
  }

  .cf7-confirm-row dt {
    padding: 16px 18px;
    border-right: 1px solid #efe8dc;
  }

  .cf7-confirm-row dd {
    padding: 16px 18px;
  }
}

@media (min-width: 960px) {
  .cf7-shell {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .cf7-side-box {
    position: sticky;
    top: 88px;
    padding: 24px 20px 18px;
  }

  .cf7-progress-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cf7-progress-steps li {
    text-align: left;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
  }

  .cf7-progress-steps li span {
    margin: 0;
  }

  .cf7-progress-steps li small {
    font-size: 11px;
  }

  .cf7-step-card {
    padding: 28px 28px 24px;
  }

  .cf7-multistep .form-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .cf7-multistep .name-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cf7-choice-grid-3 .wpcf7-checkbox {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .cf7-shell {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .cf7-progress-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
  }

  .cf7-progress-steps li small {
    white-space: nowrap;
    word-break: keep-all;
  }
}

/* ======================= #  ===*/
.cf7-nav-confirm .cf7-back {
  min-height: 64px;
  height: 4vw;
}

.consultation-benefit {
  display: block;
  margin-top: 6px;
  color: #b68b3f;
  font-size: 0.92em;
  font-weight: 700;
  line-height: 1.4;
}

.cf7-privacy-row {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid #e8e0d3;
  border-radius: 16px;
  background: #faf7f1;
}

.cf7-privacy-row .wpcf7-form-control-wrap {
  display: block;
}

.cf7-privacy-row .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.cf7-privacy-row .wpcf7-list-item label {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cf7-privacy-row input[type="checkbox"] {
  margin-right: 8px;
  margin-left: 1rem;
}

.cf7-privacy-text {
  font-size: 14px;
  font-weight: 700;
  color: #4d463d;
}

.cf7-privacy-text a {
  color: #8f7b5d;
  text-decoration: underline;
}
