/*==================================================
  LP001 リニューアル用スタイル（新規追加分）
  既存の style_lp01.css を読み込んだ後に読み込むこと。
  Figma: VOiCE_LP (node 6305:27044)
==================================================*/
.lp01 {
  --voice-blue: #1c7adc;
  --voice-purple: #565cff;
  --voice-text: #444557;
  --voice-text-dark: #333333;
  --voice-gradient-blue: linear-gradient(135deg, #029fe9 0%, #555dfe 100%);
  --voice-gradient-pink: linear-gradient(135deg, #fe47bd 0%, #cc54fd 100%);
  --voice-gradient-teal: linear-gradient(180deg, #82e2f2 0%, #25bfd4 100%);
}
/* 実機（iOS/モバイルブラウザ）のタッチ操作時、横方向にわずかでもスクロール可能な
   領域があるとラバーバンド（バウンス）効果でコンテンツ全体が左右にブレて見える。
   PC/DevToolsのデバイスエミュレーションではこの挙動が再現されないため、
   実機でのみ症状が出る。横方向のオーバースクロールと余分なスクロール領域自体を
   ここで明示的に止める。 */

@media (max-width:798px) {
  
  html,
  body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }
  
}

/* ---------- 共通ボタン（配置場所を問わず同じデザイン・ホバー挙動） ----------
   btn--primary＝「まずは無料相談」等のピンク系、btn--outline＝「資料ダウンロード」等の青アウトライン系。
   デフォルトの配色は各セクションの .btn_box 側で定義する。ホバー挙動は
   このファイル末尾でまとめて定義する（.btn_box 側のセレクタと詳細度を
   揃え、かつ後方に記述することで確実に優先させるため） */
.lp01 .btn--outline {
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* ---------- header / gnb ---------- */
.lp01 .fixed-header,
.lp01 .l-header {
  background: #fff;
  box-shadow: 0 1px 5px 0 rgba(5, 0, 1, 0.1);
}
/* PC：スクロール500px後に別要素(.fixed-header)がフェードインする仕様（common.js側の
   jQuery制御）だと「新しいバーが出てくる」ように見えるため、このLPでは使わない。
   代わりにFVで見えているヘッダー自体をposition:stickyにして、そのまま
   画面上部に追従させる。common.jsは他LP共通の可能性があるため変更しない。 */
.lp01 .l-header {
  position: sticky;
  top: 0;
  z-index: 15;
}
.lp01 .fixed-header {
  display: none !important;
  z-index: 10 !important;
}
.lp01 .fixed-header__inner,
.lp01 .l-header .inner {
  max-width: 100%;
  padding: 0 25px;
  align-items: center;
  justify-content: space-between;
}
.lp01 .fixed-header__logo img,
.lp01 .l-header .sitelogo img {
  width: 140px;
}
.lp01 .fixed-header__gnb,
.lp01 .l-header__gnb {
  display: flex;
  align-items: center;
  gap: 38px;
}
.lp01 .fixed-header__nav ul,
.lp01 .l-header__gnb .header_nav ul {
  display: flex;
  align-items: center;
  gap: 55px;
  margin: 0;
  padding: 0;
}
.lp01 .fixed-header__nav ul li,
.lp01 .l-header__gnb .header_nav ul li {
  margin: 0;
  list-style: none;
  font-size: 14px;
}
.lp01 .fixed-header__nav ul li a,
.lp01 .l-header__gnb .header_nav ul li a {
  color: var(--voice-text-dark);
  font-weight: 500;
  text-decoration: none;
}
.lp01 .fixed-header .btn_box,
.lp01 .l-header .btn_box {
  display: flex;
  gap: 20px;
  max-width: none;
  width: auto;
}
.lp01 .fixed-header .btn_box .btn,
.lp01 .l-header .btn_box .btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  white-space: nowrap;
  width: 130px;
}
.lp01 .fixed-header .btn_box .btn::before,
.lp01 .l-header .btn_box .btn::before {
  content: none;
}
.lp01 .fixed-header .btn_box .btn--outline,
.lp01 .l-header .btn_box .btn--outline {
  background: #fff;
  border: 1px solid var(--voice-blue);
  color: var(--voice-blue);
}
.lp01 .fixed-header .btn_box .btn--primary,
.lp01 .l-header .btn_box .btn--primary {
  background: var(--voice-gradient-pink);
  color: #fff;
  border: none;
  margin-left: 20px;
}
@media (max-width: 991.98px) {
  .lp01 .fixed-header,
  .lp01 .l-header {
    display: none !important;
  }
}

/* ---------- SP用：画面下部固定バー（CTAボタン＋ハンバーガーメニュー） ---------- */
.lp01 .sp-fixed-bar {
  display: none;
}
/* メニューが開いている間はコンテンツにぼかしを入れ、背景スクロールを止める */
body.is-sp-menu-open {
  overflow: hidden;
}
body.is-sp-menu-open .contents,
body.is-sp-menu-open #renew-sec11,
body.is-sp-menu-open .l-footer {
  filter: blur(4px);
}
.lp01 .contents,
.lp01 #renew-sec11,
.lp01 .l-footer {
  transition: filter 0.3s ease;
}
@media (max-width: 991.98px) {
  .lp01 {
    padding-bottom: 68px;
  }
  .lp01 .sp-fixed-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 1000;
  }
  .lp01 .sp-fixed-bar__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    width: 100%;
    box-shadow: 0 -4px 4px 0 rgba(156, 156, 156, 0.25);
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__inner {
    border-radius: 0;
    border-top: 1px solid #D3D3D3;
  }
  .lp01 .sp-fixed-bar__inner .btn {
    flex: 1;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    white-space: nowrap;
  }
  .lp01 .sp-fixed-bar__inner .btn::before {
    content: none;
  }
  .lp01 .sp-fixed-bar__inner .btn--outline {
    background: #fff;
    border: 1px solid var(--voice-blue);
    color: var(--voice-blue);
  }
  .lp01 .sp-fixed-bar__inner .btn--primary {
    background: var(--voice-gradient-pink);
    color: #fff;
    border: none;
  }
  .lp01 .sp-fixed-bar__toggle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    border-radius: 50%;
    background: #F0F0F0;
    padding: 0;
    transition: background 0.25s ease;
  }
  .lp01 .sp-fixed-bar__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #444557;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__toggle {
    background: #efeff3;
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__toggle span {
    background: var(--voice-text-dark);
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__toggle span:nth-child(2) {
    opacity: 0;
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .lp01 .sp-fixed-bar__menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    background: #fff;
    box-shadow: 0 -4px 4px 0 rgba(156, 156, 156, 0.25);
    max-height: 0;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
    transition: max-height 0.3s ease;
  }
  .lp01 .sp-fixed-bar.is-open .sp-fixed-bar__menu {
    max-height: 320px;
    padding-bottom: 30px;
  }
  .lp01 .sp-fixed-bar__nav ul {
    margin: 0 10px;
    padding: 0;
    padding-top: 10px;
    list-style: none;
  }
  .lp01 .sp-fixed-bar__nav ul li {
    border-bottom: 1px solid #D3D3D3;
  }
  .lp01 .sp-fixed-bar__nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--voice-text-dark);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
  }
  .lp01 .sp-fixed-bar__nav ul li a::after {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #444557;
    border-right: 2px solid #444557;
    transform: rotate(45deg);
  }
}

/* ---------- mv ---------- */
.lp01 .l-mv--renew {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}
.lp01 .l-mv--renew::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  width: 100%;
  height: 900px;
  background: var(--VOiCE-gradient_blue, linear-gradient(135deg, #029FE9 0%, #555DFE 100%));
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.lp01 .l-mv--renew .l-mv__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.lp01 .l-mv__logo-icon {
  position: absolute;
  left: -126px;
  top: -10px;
  width: 429px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .lp01 .l-mv__logo-icon {
    display: none;
  }
}
.lp01 .l-mv__logo {
  display: none;
}
@media (max-width: 991.98px) {
  .lp01 .l-mv__logo {
    display: block;
    text-align: left;
    margin-bottom: 36px;
    margin-left: 16px;
    margin-top: 16px;
  }
  .lp01 .l-mv__logo img {
    width: 130px;
  }
}
.lp01 .l-mv__badge {
  display: inline-block;
  background: #fff;
  border-radius: 50px;
  padding: 6px 30px;
  font-size: 20px;
  font-weight: bold;
  color: var(--voice-blue);
  margin-bottom: 24px;
}
.lp01 .l-mv__catch {
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 24px;
}
.lp01 .l-mv__catch .kanji {
  font-size: 50px;
  color: var(--voice-text-dark);
}
.lp01 .l-mv__catch .kana {
  font-size: 40px;
  color: var(--voice-text-dark);
}
.lp01 .l-mv__catch .hl {
  display: inline-block;
  background: var(--voice-gradient-blue);
  color: #fff;
  padding: 0px 16px;
  border-radius: 5px;
}
.lp01 .l-mv__catch .hl .kanji {
  color: #fff;
  font-size: 50px;
}
.lp01 .l-mv__catch .hl .kana {
  color: #fff;
}
.lp01 .l-mv__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--voice-text);
  margin-bottom: 32px;
}
.lp01 .l-mv__btn_box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.lp01 .l-mv__btn_box .btn {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  min-width: 208px;
  text-align: center;
}
.lp01 .l-mv__btn_box .btn--primary {
  background: var(--voice-gradient-pink);
  color: #fff;
}
.lp01 .l-mv__btn_box .btn--outline {
  background: #fff;
  border: 1px solid var(--voice-blue);
  color: var(--voice-blue);
}
.lp01 .l-mv__stats {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
  flex-wrap: wrap;
  padding: 24px 0 17px;
  margin-bottom: 40px;
}
.lp01 .l-mv__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 900px;
  height: 1px;
  background: var(--voice-purple);
  opacity: 0.5;
}
.lp01 .l-mv__stats::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  max-width: 900px;
  height: 1px;
  background: var(--voice-purple);
  opacity: 0.5;
}
.lp01 .l-mv__stats .stat {
  text-align: center;
  color: var(--voice-text-dark);
  font-weight: bold;
  line-height: 1.2;
}
.lp01 .l-mv__stats .stat-label {
  font-size: 13px;
}
.lp01 .l-mv__stats .stat-value {
  font-size: 37px;
  color: var(--voice-purple);
  line-height: 1.2;
}
.lp01 .l-mv__stats .stat-unit {
  font-size: 13px;
  color: var(--voice-text-dark);
}
.lp01 .l-mv__mascot {
  position: absolute;
  bottom: -6px;
  width: 90px;
}
.lp01 .l-mv__mascot--left {
  left: 20%;
}
.lp01 .l-mv__mascot--right {
  right: 16%;
  width: 150px;
  bottom: -55px;
}
@media (max-width: 991.98px) { 
  .lp01 .l-mv__badge {
     padding: 6px 10px;
     font-size: 16px;
     margin-bottom: 10px;
  }
  .lp01 .l-mv__catch .hl {
    margin-top: 10px;
  }
   
}
@media (max-width: 1200px) {
  .lp01 .l-mv__mascot {
    display: none;
  }
}
.lp01 .l-mv__collage {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}
.lp01 .l-mv__collage img {
  display: block;
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); */
}
.lp01 .l-mv__collage-sub {
  position: absolute;
  width: 32%;
  z-index: 2;
}
.lp01 .l-mv__collage-sub--left {
  left: -6%;
  top: -8%;
}
.lp01 .l-mv__collage-sub--right {
  right: -4%;
  bottom: -14%;
  width: 40%;
}
@media (max-width: 991.98px) {
  .lp01 .l-mv--renew {
    padding: 0;
  }
  .lp01 .l-mv--renew .l-mv__inner {
    padding: 0;
  }
  .lp01 .l-mv__catch .kanji {
    font-size: 40px;
  }
  .lp01 .l-mv__catch .kana {
    font-size: 26px;
  }
  .lp01 .l-mv__catch .hl .kanji {
    font-size: 40px;
  }
  .lp01 .l-mv__lead {
    font-size: 14px;
  }
  .lp01 .l-mv__btn_box {
    display: none;
  }
  .lp01 .l-mv__stats {
    gap: 16px;
    padding: 13px 0 13px;
    margin: 0 22px 22px;
  }
  .lp01 .l-mv__stats::before,
  .lp01 .l-mv__stats::after {
    width: 100%;
  }
  .lp01 .l-mv__stats .stat-value {
    font-size: 32px;
  }
  .lp01 .l-mv__collage-sub {
    display: none;
  }
}

/* ---------- 01：知られていない事実 ---------- */
.lp01 .sec01 {
  background: #fffcf5;
  padding: 100px 20px;
}
.lp01 .sec01__head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lp01 .sec01__label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--voice-blue);
  margin-bottom: 8px;
}
.lp01 .sec01__label-line {
  width: 186px;
  height: 1px;
  background: var(--voice-blue);
  border: none;
  margin: 0 auto 14px;
  opacity: 0.4;
}
.lp01 .sec01__catch {
  font-size: 32px;
  font-weight: bold;
  color: var(--voice-text);
  line-height: 1.8;
  margin: 0 0 20px;
}
.lp01 .sec01__catch .hl {
  display: inline-block;
  background: var(--voice-gradient-blue);
  color: #fff;
  padding: 0px 10px 4px;
  border-radius: 5px;
  margin: 0 5px;
  line-height: 1.2;
  font-size: 40px;
}
.lp01 .sec01__lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text);
}
.lp01 .sec01__lead strong {
  color: var(--voice-blue);
}
.lp01 .sec01__chart-card {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 40px 0px 30px;
}
.lp01 .sec01__chart-wrap {
  margin-bottom: 24px;
}
.lp01 .sec01__chart {
  display: block;
  width: 100%;
  height: auto;
}
.lp01 .sec01__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 0;
}
.lp01 .sec01__steps li {
  list-style: none;
}
.lp01 .sec01__step-label {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  color: var(--voice-blue);
  margin-bottom: 8px;
}
.lp01 .sec01__step-box {
  width: 179px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  color: var(--voice-text);
  background: linear-gradient(to bottom, #f3fbff 60%, #fff 100%);
  border: 1px solid rgba(28, 122, 220, 0.3);
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
}
.lp01 .sec01__step-arrow {
  align-self: flex-end;
  width: 13px;
  height: 61px;
  flex-shrink: 0;
  position: relative;
}
.lp01 .sec01__step-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--voice-blue);
}
.lp01 .sec01__title-bar {
  max-width: 900px;
  margin: 74px auto 0;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: var(--voice-text-dark);
  line-height: 1.5;
}
.lp01 .sec01__title-bar .hl-block {
  display: inline-block;
  background: var(--voice-gradient-blue);
  color: #fff;
  border-radius: 5px;
  font-size: 36px;
  padding: 0px 10px 4px;
  margin: 0 5px;
  line-height: 1.2;
}
.lp01 .sec01__card {
  max-width: 1100px;
  margin: 30px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.lp01 .sec01__funnel-panel {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.lp01 .sec01__list-ttl {
  font-size: 22px;
  font-weight: bold;
  color: var(--voice-text);
  text-align: center;
  margin: 0 0 5px;
}
.lp01 .sec01__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp01 .sec01__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(28, 122, 220, 0.1);
  color: var(--voice-blue);
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  padding: 6px 15px;
  width: 235px;
}
.lp01 .sec01__list li img {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.lp01 .sec01__bucket {
  width: 329px;
  height: auto;
  flex-shrink: 0;
}
.lp01 .sec01__result {
  width: 242px;
  flex-shrink: 0;
  background: rgba(250, 72, 194, 0.05);
  border-radius: 5px;
  padding: 20px 10px 0px;
  text-align: center;
  box-sizing: border-box;
}
.lp01 .sec01__result-ttl {
  font-weight: bold;
  font-size: 22px;
  color: var(--voice-text);
  margin: 0 0 13px;
}
.lp01 .sec01__result-ring {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.lp01 .sec01__result-caption {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
  color: var(--voice-text);
  margin: 26px 13px 0;
  border-top: 1px solid #F24ACD;
  padding: 21px 0;
}
.lp01 .sec01__arrow {
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 89px;
  overflow: hidden;
  position: relative;
}
.lp01 .sec01__arrow img {
  position: absolute;
  top: 0;
  width: 400px;
  max-width: none;
  height: auto;
}
.lp01 .sec01__arrow--left img {
  left: 0;
}
.lp01 .sec01__arrow--right img {
  right: 0;
}
.lp01 .sec01__summary {
  background: rgba(28, 122, 220, 0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lp01 .sec01__summary-ico {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: block;
}
.lp01 .sec01__summary p {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: var(--voice-text);
  margin: 0;
}
.lp01 .sec01__summary strong {
  color: var(--voice-blue);
}
.lp01 .sec01__caption {
  max-width: 1100px;
  margin: 16px auto 0;
  font-size: 12px;
  color: #a7a7a7;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .lp01 .sec01 {
    padding: 70px 16px 70px;
  }
  .lp01 .sec01__label {
    font-size: 16px;
  }
  .lp01 .sec01__catch {
    font-size: 20px;
    margin: 0 0 35px;
    line-height: 1.8;
  }
  .lp01 .sec01__catch .hl {
    font-size: 29px;
    line-height: 1.3;
    padding: 0px 4px 3px;
  }
  .lp01 .sec01__lead {
    font-size: 13px;
  }
  .lp01 .sec01__chart-card {
    margin-top: 0;
    padding: 20px 0;
    border-radius: 10px;
    background: none;
    box-shadow: none;
  }
  .lp01 .sec01__chart-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lp01 .sec01__chart-wrap::-webkit-scrollbar {
    display: none;
  }
  .lp01 .sec01__chart {
    width: 720px;
    max-width: none;
  }
  .lp01 .sec01__steps {
    display: none;
  }
  .lp01 .sec01__title-bar {
    margin-top: 20px;
    font-size: 22px;
  }
  .lp01 .sec01__title-bar .hl-block {
    font-size: 30px;
    line-height: 1.3;
    padding: 0px 6px 3px;
  }
  .lp01 .sec01__card {
    border-radius: 10px;
  }
  .lp01 .sec01__funnel-panel {
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
  }
  .lp01 .sec01__list ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .lp01 .sec01__list li {
    width: auto;
    font-size: 14px;
    width: 48%;
    gap: 5px;
    padding: 7px;
  }
  .lp01 .sec01__list li:nth-child(4) {
    order: 7;
  }
  .lp01 .sec01__list li:nth-child(5) {
    order: 4;
  }
  .lp01 .sec01__list li:nth-child(6) {
    order: 5;
  }
  .lp01 .sec01__list li:nth-child(7) {
    order: 6;
  }
  .lp01 .sec01__list li img {
    width: 22px;
    height: 22px;
  }
  .lp01 .sec01__bucket {
    width: 100%;
  }
  .lp01 .sec01__result {
    width: 100%;
  }
  .lp01 .sec01__result-ttl {
    margin-bottom: 22px;
  }
  .lp01 .sec01__result-caption {
    margin-top: 26px;
  }
  .lp01 .sec01__result-ring {
    width: 200px;
    height:200px;
  }
  .lp01 .sec01__arrow {
    transform: rotate(90deg);
  }
  .lp01 .sec01__summary {
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
  }
  .lp01 .sec01__summary-ico {
    width: 35px;
    height: 35px;
  }
  .lp01 .sec01__summary p {
    font-size: 16px;
    text-align: left;
  }
}

/* ---------- 共通セクション見出し (02〜04で使い回し) ---------- */
.lp01 .sec-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.lp01 .sec-label {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: var(--voice-blue);
  margin-bottom: 8px;
}
.lp01 .sec-label-line {
  width: 186px;
  height: 1px;
  background: var(--voice-blue);
  border: none;
  margin: 0 auto 14px;
  opacity: 0.4;
}
.lp01 .sec-catch {
  font-size: 36px;
  font-weight: bold;
  color: var(--voice-text-dark);
  line-height: 1.5;
  margin: 0 0 20px;
}
.lp01 .sec-catch .hl-block {
  display: inline-block;
  background: var(--voice-gradient-blue);
  color: #fff;
  padding: 1px 12px 4px;
  border-radius: 5px;
  margin: 0 3px;
  font-size: 40px;
  line-height: 1.2;
}
.lp01 .sec-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text);
}
.lp01 .sec-lead strong {
  color: var(--voice-blue);
}
@media (max-width: 991.98px) {

  .lp01 .sec-head {
    margin-top: 20px;
    padding: 0;
  }
  .lp01 .sec-label {
    font-size: 16px;
  }
  .lp01 .sec-catch .hl-block {
    font-size: 29px;
    line-height: 1.3;
    padding: 0px 6px 3px;
  }
  .lp01 .sec-catch {
    font-size: 23px;
    line-height: 1.8;
    margin: 0 0 35px;
  }
  .lp01 .sec-lead {
    font-size: 15px;
  }
}

/* ---------- 02：なぜ離脱が起きるのか ---------- */
.lp01 .sec02 {
  padding: 90px 20px;
  background: #fff;
}
.lp01 .sec02__card {
  max-width: 800px;
  margin: 77px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 25px 27px 26px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.lp01 .sec02__card--reverse {
  max-width: 1013px;
  flex-direction: row-reverse;
}
.lp01 .sec02__card-img {
  display: block;
  position: relative;
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.lp01 .sec02__card-img--negative {
  width: 50%;
}
.lp01 .sec02__card-body {
  flex: 1;
  min-width: 0;
}
.lp01 .sec02__card-img img {
  display: block;
  width: 100%;
}
.lp01 .sec02__card-ttl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--voice-blue);
  margin: 0 0 20px;
}
.lp01 .sec02__card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
  margin: 0;
}
.lp01 .sec02__card-text .pink {
  font-weight: bold;
  font-size: 22px;
  color: #e74dda;
}
@media (max-width: 991.98px) {
  .lp01 .sec02 {
    padding: 40px 16px 70px;
  }
  .lp01 .sec02__card,
  .lp01 .sec02__card--reverse {
    flex-direction: column;
    padding: 26px 16px;
    gap: 20px;
    margin-top: 40px;
    text-align: center;
  }
  .lp01 .sec02__card-body {
    display: contents;
  }
  .lp01 .sec02__card-ttl {
    order: 1;
    font-size: 20px;
    margin: 0;
  }
  .lp01 .sec02__card-img {
    order: 2;
    width: 100%;
  }
  .lp01 .sec02__card-text {
    order: 3;
    text-align: left;
  }
}

/* ---------- 03：解決策 ---------- */
.lp01 .sec03 {
  position: relative;
  background: #ddeffc;
  padding: 0 0 70px;
}
.lp01 .sec03__wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}
/* PC版の画像はwidth/height属性からアスペクト比が決まり、height:autoのままだと
   資料ダウンロードパネルの開閉で.contentsの幅が変わるたびに高さも連動して
   変化し、sec03以降のコンテンツが上下にずれてしまう。高さを固定して幅だけが
   変化するようにする（SP版はd-lg-noneでこの機能の対象外のため対象外） */
.lp01 .sec03__wave.d-lg-block {
  height: 106px;
}
.lp01 .sec03__wave-arrow {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 227px;
  height: auto;
  z-index: 1;
}
.lp01 .sec-head.wave_bg {
  margin-top: 100px;
}
.lp01 .sec03__item {
  max-width: 1100px;
  margin: 66px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.lp01 .sec03__mockup {
  width: 54%;
  flex-shrink: 0;
}
.lp01 .sec03__mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #f1f3f4;
  border-bottom: 1px solid #e0e0e0;
}
.lp01 .sec03__mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  flex-shrink: 0;
}
.lp01 .sec03__mockup-dot:nth-child(1) {
  background: #ff5f57;
}
.lp01 .sec03__mockup-dot:nth-child(2) {
  background: #febc2e;
}
.lp01 .sec03__mockup-dot:nth-child(3) {
  background: #28c840;
}
.lp01 .sec03__mockup-url {
  flex: 1 1 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 4px 14px;
  margin-left: 10px;
  font-size: 12px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp01 .sec03__mockup-icons {
  display: flex;
  gap: 10px;
  margin-left: 10px;
  color: #9aa0a6;
  font-size: 13px;
  flex-shrink: 0;
}
.lp01 .sec03__mockup-body {
  padding: 20px;
}
.lp01 .sec03__search-result {
  margin-bottom: 20px;
}
.lp01 .sec03__search-result-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.lp01 .sec03__search-logo {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--voice-blue);
  color: #fff;
  font-size: 7px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp01 .sec03__search-title {
  font-size: 15px;
  font-weight: bold;
  color: #1a0dab;
  margin: 0;
}
.lp01 .sec03__search-url {
  font-size: 12px;
  color: #006621;
  margin: 0;
}
.lp01 .sec03__search-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #4d5156;
  margin: 0;
}
.lp01 .sec03__search-result--dim {
  opacity: 0.5;
}
.lp01 .sec03__search-title--muted {
  color: #4d5156;
  font-size: 14px;
}
.lp01 .sec03__ai-heading {
  font-weight: bold;
  font-size: 14px;
  color: #333;
  margin: 0 0 8px;
}
.lp01 .sec03__ai-list {
  margin: 0 0 16px;
  padding-left: 18px;
}
.lp01 .sec03__ai-list li {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 4px;
}
.lp01 .sec03__ai-cite {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--voice-blue);
  color: var(--voice-blue);
  font-weight: bold;
  font-size: 13px;
  border-radius: 20px;
  padding: 4px 14px;
}
.lp01 .sec03__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid #ddeffc;
  border-radius: 50%;
  background: var(--voice-gradient-blue);
  box-shadow: 0 0 0 2px rgba(28, 122, 220, 0.5);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  margin-right: 10px;
}
.lp01 .sec03__item-label {
  font-weight: bold;
  font-size: 18px;
  line-height: 0.2;
  color: var(--voice-blue);
  margin: 0;
}
.lp01 .sec03__item-ttl {
  font-weight: bold;
  font-size: 26px;
  padding: 0px 15px;
  color: var(--voice-blue);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  margin-bottom: 20px;
}
.lp01 .sec03__item-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
  margin: 0;
}
.lp01 .sec03__item-line {
  border: none;
  border-top: 1px solid var(--voice-blue);
  margin: 20px 0 0;
}
.lp01 .sec03__item-stat {
  font-weight: bold;
  font-size: 20px;
  color: var(--voice-text-dark);
  margin: 0;
}
.lp01 .sec03__item-stat .num {
  font-size: 50px;
  color: #e74dda;
}
@media (max-width: 991.98px) {
  .lp01 .sec03 {
    padding: 0 0px 40px;
  }
  .lp01 .sec03__wave-arrow {
    width: 150px;
    top: -5px;
  }
  .lp01 .sec03__item {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    margin-top: 24px;
    padding: 20px 16px;
  }
  .lp01 .sec03__item-body {
    display: contents;
  }
  .lp01 .sec03__item-label {
    order: 1;
    text-align: center;
    line-height: 0.2;
    margin: 0;
  }
  .lp01 .sec03__item-ttl {
    order: 2;
    font-size: 18px;
    text-align: left;
    margin-right: -15px;
    margin-top: 10px;
    border-radius: 10px 0 0 10px;
    padding: 8px 13px;
  }
  .lp01 .sec03__mockup {
    order: 3;
    width: 100%;
  }
  .lp01 .sec03__item-text {
    order: 4;
    margin-top: 20px;
  }
  .lp01 .sec03__item-stat {
    order: 5;
    font-size: 18px;
  }
  .lp01 .sec03__item-line {
    order: 6;
  }
  .lp01 .sec03__item-stat .num {
    font-size: 46px;
  }
}

/* ---------- 04：捉え方のシフト ---------- */
.lp01 .sec04 {
  padding: 100px 20px;
  background: #fff;
}
.lp01 .sec04__cards {
  max-width: 1100px;
  margin: 70px auto 0;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.lp01 .sec04__card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 30px;
}
.lp01 .sec04__card--voice {
  background: #f3fbff;
}
.lp01 .sec04__card-ttl {
  font-weight: bold;
  font-size: 24px;
  color: var(--voice-text-dark);
  text-align: center;
  margin: 0 0 20px;
}
.lp01 .sec04__card-ttl--voice {
  display: inline-block;
  background: var(--voice-gradient-blue);
  color: #fff;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}
.lp01 .sec04__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.lp01 .sec04__tag {
  border: 1px solid var(--voice-text-dark);
  border-radius: 20px;
  padding: 2px 15px;
  font-size: 14px;
  color: var(--voice-text-dark);
  background: #fff;
  white-space: nowrap;
}
.lp01 .sec04__tag::before {
  content: "# ";
  font-weight: bold;
  color: var(--voice-purple);
}
.lp01 .sec04__tag--blue {
  border-color: var(--voice-blue);
}
.lp01 .sec04__shot {
}
.lp01 .sec04__shot img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
.lp01 .sec04__summary {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  background: #fef6e7;
  border-radius: 20px;
  padding: 24px 16% 30px 54px;
}
.lp01 .sec04__summary-mascot {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 200px;
  height: auto;
}
.lp01 .sec04__summary-ttl {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  color: var(--voice-purple);
  margin: 0 0 14px;
}
.lp01 .sec04__summary-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  flex-shrink: 0;
  width: 44px;
  height: 1px;
  background: var(--voice-purple);
}
.lp01 .sec04__summary-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
  margin: 0;
}
@media (max-width: 991.98px) {
  .lp01 .sec04 {
    padding: 40px 16px 60px;
  }
  .lp01 .sec04__cards {
    flex-direction: column;
    margin-top: 60px;
  }
  .lp01 .sec04__card {
    padding: 28px 18px 18px;
    border-radius: 10px;
  }
  .lp01 .sec04__card-ttl {
    font-size: 20px;
    border-radius: 5px;
    width: 88%;
    display: block;
    margin: 0 auto 20px;
  }
  .lp01 .sec04__summary {
    padding: 24px 25px 90px;
  }
  .lp01 .sec04__summary-ttl {
    font-size: 18px;
    display: contents;
  }
  .lp01 .sec04__summary-ttl::before {
    left: 0;
    display: block;
    top: 40px;
    width: 20px;
    height: 2px;
  }
  .lp01 .sec04__summary-text {
    margin-top:20px;
    
  }
  .lp01 .sec04__summary-mascot {
    right: 12px;
    width: 150px;
  }
}

/* ---------- 05：活用チャネル ---------- */
.lp01 .sec05 {
  padding: 85px 20px;
  background: linear-gradient(to bottom, #fff 0%, #f3fbff 21%, #e6f6ff 70%);
}
.lp01 .sec05__grid {
  max-width: 1100px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.lp01 .sec05__card {
  background: #fff;
  border-radius: 20px;
  /* box-shadow: 0 0 7.5px 0 rgba(0, 0, 0, 0.15); */
  padding: 30px;
}
.lp01 .sec05__tag {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.lp01 .sec05__card-ttl {
  font-weight: bold;
  font-size: 22px;
  color: var(--voice-blue);
  margin: 0 0 10px;
}
.lp01 .sec05__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--voice-text-dark);
  margin: 0 0 16px;
}
.lp01 .sec05__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp01 .sec05__card-tags span {
  background: #e4e4e4;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 14px;
  color: var(--voice-text-dark);
}
@media (max-width: 991.98px) {
  .lp01 .sec05 {
    padding: 40px 16px 66px;
  }
  .lp01 .sec05__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 29px;
  }
  .lp01 .sec05__card {
    padding: 30px 20px;
  }
  
  .lp01 .sec05__card-ttl{
    font-size: 20px;
  }
}

/* ---------- 06：導入実績 ---------- */
.lp01 .sec06 {
  padding: 100px 20px;
  background: linear-gradient(135deg, #029fe9 0%, #555dfe 100%);
}
.lp01 .sec-head--white .sec-label--white {
  color: #fff;
}
.lp01 .sec-label-line--white {
  background: #fff;
  opacity: 0.6;
}
.lp01 .sec-catch--white {
  color: #fff;
}
.lp01 .hl-block--white,
.lp01 .sec-catch .hl-block.hl-block--white {
  background: #fff;
  color: var(--voice-blue);
}
.lp01 .sec-lead--white {
  color: #fff;
}
.lp01 .sec06__grid {
  max-width: 1100px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.lp01 .sec06__card {
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 0 7.5px 0 rgba(0, 0, 0, 0.15);
  padding: 25px;
  text-align: left;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: opacity 0.2s ease;
}
.lp01 .sec06__card:hover {
  opacity: 0.7;
}
.lp01 .sec06__tag {
  display: inline-block;
  background: #daf0fc;
  color: var(--voice-blue);
  font-size: 14px;
  border-radius: 5px;
  padding: 1px 6px;
  margin-bottom: 7px;
}
.lp01 .sec06__company {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.3;
  color: var(--voice-blue);
  margin: 0 0 7px;
}
.lp01 .sec06__card-img {
  display: block;
  width: 100%;
  margin: auto;
}
.lp01 .sec06__line {
  border: none;
  border-top: 1px solid #d3d9dc;
  margin: 10px 0;
}
.lp01 .sec06__stats {
  font-size: 14px;
  color: var(--voice-text);
  line-height: 1.5;
  margin: 6px 0 15px;
}
.lp01 .sec06__num {
  font-weight: bold;
  font-size: 24px;
  color: var(--voice-purple);
}
.lp01 .sec06__quote {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  color: var(--voice-text);
  line-height: 1.5;
  min-height: 83px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.lp01 .sec06__attr {
  font-size: 12px;
  color: #9d9d9d;
  text-align: right;
  margin: 6px 0 0;
}
.lp01 .sec06__more {
  font-weight: bold;
  font-size: 14px;
  color: var(--voice-text);
  text-align: right;
  margin: 0;
}
.lp01 .sec06__btn_box {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.lp01 .sec06__btn_box .btn {
  padding: 16px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  min-width: 184px;
  text-align: center;
}
.lp01 .sec06__btn_box .btn--primary {
  background: var(--voice-gradient-pink);
  color: #fff;
  border: 1px solid #fff;
}
.lp01 .sec06__btn_box .btn--outline {
  background: #fff;
  border: 1px solid var(--voice-blue);
  color: var(--voice-blue);
}
@media (max-width: 991.98px) {
  .lp01 .sec06 {
    padding: 40px 16px;
  }
  .lp01 .sec06__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .lp01 .sec06__btn_box {
    flex-direction: column;
    align-items: center;
  }
}

/* 06：導入事例 詳細Modal */
body.is-modal-open {
  overflow: hidden;
}
.lp01 .sec06__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.lp01 .sec06__modal.is-open {
  display: flex;
}
.lp01 .sec06__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.6);
}
.lp01 .sec06__modal-body {
  position: relative;
  background: #fff;
  padding: 28px 50px;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  box-sizing: border-box;
  z-index: 1;
}
.lp01 .sec06__modal-scroll {
  max-height: calc(88vh - 100px);
  overflow-y: auto;
  padding-right: 10px;
}
.lp01 .sec06__modal-close {
  position: absolute;
  top: 5px;
  right: -1px;
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  z-index: 2;
}
.lp01 .sec06__modal-company {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: var(--voice-text);
  margin: 0 0 10px;
}
.lp01 .sec06__modal-company-mark {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #333;
  flex-shrink: 0;
}
.lp01 .sec06__modal-badge {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 16px;
}
.lp01 .sec06__modal-badge--blue {
  background: var(--voice-blue);
}
.lp01 .sec06__modal-badge--pink {
  background: var(--voice-gradient-pink);
}
.lp01 .sec06__modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.lp01 .sec06__modal-tags span {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}
.lp01 .sec06__modal-issue {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 15px 12px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.lp01 .sec06__modal-issue ul {
  margin: 0;
  padding-left: 18px;
}
.lp01 .sec06__modal-issue li {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 8px;
}
.lp01 .sec06__modal-issue li:last-child {
  margin-bottom: 0;
}
.lp01 .sec06__modal-changes {
  margin-bottom: 22px;
}
.lp01 .sec06__modal-change-grid {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.lp01 .sec06__modal-change {
  position: relative;
  flex: 1 1 0;
  background: #f3fbff;
  border-radius: 5px;
  padding: 15px 20px 20px;
}
.lp01 .sec06__modal-change-tag {
  position: absolute;
  top: -8px;
  right: 1px;
  transform: translateY(-50%);
  display: inline-block;
  border: none;
  color: var(--voice-blue);
  background: #f3fbff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  padding: 4px 12px;
  white-space: nowrap;
}
.lp01 .sec06__modal-change-ttl {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 14px;
}
.lp01 .sec06__modal-change-box {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.lp01 .sec06__modal-result {
  text-align: center;
}
.lp01 .sec06__modal-result-ttl {
  position: relative;
  display: block;
  font-weight: bold;
  font-size: 24px;
  background: var(--voice-gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  margin: 0 0 18px;
  padding-bottom: 22px;
}
.lp01 .sec06__modal-result-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 40' preserveAspectRatio='none'><polyline points='0,10 194,10 200,34 206,10 400,10' fill='none' stroke='%231c7adc' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' vector-effect='non-scaling-stroke'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.lp01 .sec06__modal-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.lp01 .sec06__modal-stat {
  background: var(--voice-gradient-blue);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp01 .sec06__modal-stat strong {
  font-size: 28px;
}
.lp01 .sec06__modal-stat strong .small-txt {
  font-size: 18px;
}
.lp01 .sec06__modal-stat strong.is-gold {
  color: #ffc300;
}
@media (max-width: 991.98px) {
  .lp01 .sec06__modal-body {
    padding: 30px 10px 30px 20px;
    max-height: 87vh;
    max-height: 87dvh;
    top: -5%;
  }
  .lp01 .sec06__modal-scroll {
    max-height: calc(88vh - 60px);
    max-height: calc(88dvh - 60px);
  }
  .lp01 .sec06__modal-change-grid {
    flex-direction: column;
  }
  .lp01 .sec06__modal-stats {
    flex-direction: column;
    align-items: center;
    margin: auto;
    text-align: center;
  }

  .lp01 .sec06__modal-company-mark {
    width: 40px;
  }
  .lp01 .sec06__modal-change-tag {
    display:none;
  }
}

/* ---------- 07：声の集め方 ---------- */
.lp01 .sec07 {
  padding: 100px 20px;
  background: #f3fbff;
}
.lp01 .sec07 .sec-catch .hl-block {
  margin-top: 12px;
}
.lp01 .sec07__surveys {
  max-width: 1100px;
  margin: 70px auto 0;
}
.lp01 .sec07__survey-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp01 .sec07__survey-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  border: 1px solid transparent;
  margin-top: 20px;
}
.lp01 .sec07__survey-card--purple {
  border-color: #565cff;
}
.lp01 .sec07__survey-card--blue {
  border-color: #1c7adc;
}
.lp01 .sec07__survey-card--gray {
  border-color: #77afea;
}
.lp01 .sec07__survey-ttl {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 0 0 20px;
  padding: 0 10px;
}
.lp01 .sec07__survey-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 140%;
  height: 23px;
  background: #fff;
  border-radius: 50%;
}
.lp01 .sec07__survey-card--purple .sec07__survey-ttl {
  background: #565cff;
}
.lp01 .sec07__survey-card--purple .sec07__survey-ttl::after {
  background: #565cff;
}
.lp01 .sec07__survey-card--blue .sec07__survey-ttl {
  background: #1c7adc;
}
.lp01 .sec07__survey-card--blue .sec07__survey-ttl::after {
  background: #1c7adc;
}
.lp01 .sec07__survey-card--gray .sec07__survey-ttl {
  background: #77afea;
}
.lp01 .sec07__survey-card--gray .sec07__survey-ttl::after {
  background: #77afea;
}
.lp01 .sec07__check-list {
  list-style: none;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp01 .sec07__check-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: bold;
  font-size: 16px;
  color: var(--voice-text-dark);
}
.lp01 .sec07__check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp01 .sec07__check-list li.is-check::before,
.lp01 .sec07__check-list li.is-check-teal::before,
.lp01 .sec07__check-list li.is-check-pink::before {
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 12px 12px, 100% 100%;
}
.lp01 .sec07__check-list li.is-check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"),
    var(--voice-gradient-blue);
}
.lp01 .sec07__check-list li.is-check-teal::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"),
    var(--voice-gradient-teal);
}
.lp01 .sec07__check-list li.is-check-pink::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"),
    var(--voice-gradient-pink);
}
.lp01 .sec07__check-list li.is-uncheck::before {
  content: "";
  background-color: #fff;
  border: 1px solid #cacaca;
}
.lp01 .sec07__badge {
  font-size: 12px;
  font-weight: bold;
  color: var(--voice-blue);
  background: #f3fbff;
  border: 1px solid var(--voice-blue);
  border-radius: 5px;
  padding: 1px 8px;
  margin-left: 4px;
}
.lp01 .sec07__badge--purple {
  color: #6b2be8;
  background: #edebfe;
  border-color: #6b2be8;
}
.lp01 .sec07__survey-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--voice-text-dark);
  padding: 12px 0px 0;
  margin: 0 20px;
  border-top: 1px solid #1c7adc;
}
.lp01 .sec07__survey-connectors {
  position: relative;
  height: 36px;
}
.lp01 .sec07__survey-dot {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--voice-blue);
}
.lp01 .sec07__survey-dot--purple {
  background: #565cff;
}
.lp01 .sec07__survey-dot--lightblue {
  background: #049ce9;
}
.lp01 .sec07__survey-line--h {
  position: absolute;
  top: 0;
  height: 0;
  margin-top: -1px;
  border-top: 2px dotted var(--voice-blue);
  opacity: 0.6;
}
.lp01 .sec07__survey-line--h.sec07__survey-line--purple {
  border-top-color: #565cff;
}
.lp01 .sec07__survey-line--v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  margin-left: -1px;
  border-left: 2px dotted var(--voice-blue);
  opacity: 0.6;
}
.lp01 .sec07__survey-line--v.sec07__survey-line--purple {
  border-left-color: #565cff;
}
.lp01 .sec07__survey-line--v.sec07__survey-line--lightblue {
  border-left-color: #049ce9;
}
.lp01 .sec07__survey-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.lp01 .sec07__survey-note {
  grid-column: span 1;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid;
  border-radius: 10px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  padding: 14px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp01 .sec07__survey-note--purple {
  grid-column: span 2;
  border-color: #565cff;
  color: #565cff;
}
.lp01 .sec07__survey-note--blue {
  border-color: var(--voice-blue);
  color: var(--voice-blue);
}
.lp01 .sec07__survey-note--lightblue {
  border-color: #81cdf4;
  color: #049ce9;
}
@media (max-width: 991.98px) {
  .lp01 .sec07 {
    padding: 40px 16px 70px;
  }

  .lp01 .sec07 .sec-catch .hl-block {
    font-size: 27px;
  }
  .lp01 .sec07__surveys {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    margin: 30px auto 0;
  }
  .lp01 .sec07__survey-cards,
  .lp01 .sec07__survey-notes {
    display: contents;
  }
  .lp01 .sec07__survey-card {
    margin-top:50px;
  }
  .lp01 .sec07__survey-ttl {font-size:18px;line-height: 1.3;min-height: 80px;}
  .lp01 .sec07__survey-card:nth-child(1) {
    order: 1;
  }
  .lp01 .sec07__survey-card:nth-child(2) {
    order: 2;
  }
  .lp01 .sec07__survey-connectors--row1 {
    order: 3;
    grid-column: span 2;
    margin-top: 0;
    height: 50.5px;
  }
  .lp01 .sec07__survey-note--purple {
    order: 4;
    grid-column: span 2;
    margin-top: 0;
  }
  .lp01 .sec07__survey-card:nth-child(3) {
    order: 5;
  }
  .lp01 .sec07__survey-card:nth-child(4) {
    order: 6;
  }
  .lp01 .sec07__survey-connectors--row2 {
    order: 7;
    grid-column: span 2;
    margin-top: 0;
    height: 55px;
  }
  .lp01 .sec07__survey-note--blue {
    order: 8;
    margin-top: 0;
  }
  .lp01 .sec07__survey-note--lightblue {
    order: 9;
    margin-top: 0;
  }
}

/* タイムライン */
.lp01 .sec07__timeline-head {
  max-width: 900px;
  margin: 130px auto 0;
  text-align: center;
}
.lp01 .sec07__timeline-ttl {
  font-weight: bold;
  font-size: 32px;
  color: var(--voice-text-dark);
  margin: 0 0 16px;
}
.lp01 .sec07__timeline-lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
}
.lp01 .sec07__timeline {
  position: relative;
  max-width: 900px;
  margin: 155px auto 0;
  padding: 0;
  list-style: none;
}
.lp01 .sec07__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--voice-blue);
  opacity: 0.3;
}
.lp01 .sec07__tl-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90px;
  margin-bottom: 2px;
}
.lp01 .sec07__tl-item:last-child {
  margin-bottom: 0;
}
.lp01 .sec07__tl-item--right {
  justify-content: flex-end;
}
.lp01 .sec07__tl-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1C7ADC;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  padding-bottom: 3px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.lp01 .sec07__tl-card {
  position: relative;
  width: 44%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 25px 25px;
}
.lp01 .sec07__tl-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}
.lp01 .sec07__tl-item:not(.sec07__tl-item--right) .sec07__tl-arrow {
  right: -14px;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.lp01 .sec07__tl-item--right .sec07__tl-arrow {
  left: -14px;
  border-width: 10px 17px 10px 0;
  border-color: transparent #fff transparent transparent;
}
.lp01 .sec07__tl-card-ttl {
  background: #f3fbff;
  color: var(--voice-blue);
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  padding: 2px 10px;
  margin: 0 0 10px;
}
.lp01 .sec07__tl-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
  margin: 0;
}
.lp01 .sec07__tl-mascot {
  position: absolute;
  width: 70px;
  height: auto;
}
.lp01 .sec07__tl-mascot--1 {
  top: -85px;
  right: calc(50% - -75px);
  width: 80px;
}
.lp01 .sec07__tl-mascot--4 {
  top: -91px;
  right: 25px;
  width: 115px;
}
.lp01 .sec07__tl-mascot--5 {
  top: -77px;
  left: -83px;
  width: 113px;
}
@media (max-width: 991.98px) {
  
  .lp01 .sec07__timeline {
    margin: 55px auto 0;
  }
  .lp01 .sec07__timeline-ttl {
    font-size: 22px;
  }
  .lp01 .sec07__timeline::before {
    left: 20px;
  }
  .lp01 .sec07__tl-item,
  .lp01 .sec07__tl-item--right {
    justify-content: flex-start;
    padding-left: 57px;
  }

  .lp01 .sec07__tl-item {
    margin-bottom: 40px;
  }
  .lp01 .sec07__tl-card {
    width: 100%;
    padding: 25px 20px;
  }
  .lp01 .sec07__tl-num {
    left: 20px;
    width: 32px;
    height: 32px;
    top: 25%;
    font-size: 16px;
  }
  .lp01 .sec07__tl-item:not(.sec07__tl-item--right) .sec07__tl-arrow,
  .lp01 .sec07__tl-item--right .sec07__tl-arrow {
    left: -14px;
    right: auto;
    border-width: 10px 17px 10px 0;
    border-color: transparent #fff transparent transparent;
  }
  .lp01 .sec07__tl-arrow {
    top: 26%;
  }
  .lp01 .sec07__tl-mascot {
    display: none;
  }
}

/* ---------- 08：掲載・分析 ---------- */
.lp01 .sec08 {
  padding: 130px 20px; 
  background: #fff;
}
.lp01 .sec08__grid {
  max-width: 1100px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}
.lp01 .sec08__shot {
  display: block;
  width: 100%;
  height: auto;
}
.lp01 .sec08__shot--window {
  overflow: hidden;
  padding: 0;
}
.lp01 .sec08__shot-bar {
  background: #eee;
  padding: 7px 10px;
  display: flex;
  gap: 6px;
}
.lp01 .sec08__shot-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9d9d9;
}
.lp01 .sec08__shot-body {
  height: 412px;
  overflow: hidden;
}
.lp01 .sec08__shot-body img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .lp01 .sec08 {
    padding: 60px 16px 80px;
  }
  .lp01 .sec08__grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    gap: 16px;
  }
  .lp01 .sec08__shot:nth-child(3) {
    grid-column: span 2;
    margin-top: 15px;
  }
  .lp01 .sec08__shot-body {
    height: 300px;
  }
}

/* ---------- 09：メッセージ ---------- */
.lp01 .sec09 {
  padding: 120px 20px;
  background: #fffcf5;
}
.lp01 .sec09__card {
  max-width: 910px;
  margin: 70px auto 0;
}
.lp01 .sec09__card img {
  display: block;
  width: 100%;
  height: auto;
}
.lp01 .sec09__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  color: var(--voice-text-dark);
  margin: 15px 0 0;
}
.lp01 .sec09__marker {
  background: linear-gradient(transparent 60%, #ffe791 60%);
}
.lp01 .sec09__text {
  max-width: 900px;
  margin: 15px auto 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--voice-text-dark);
}
@media (max-width: 991.98px) {
  .lp01 .sec09 {
    padding: 50px 16px 80px;
  }
  .lp01 .sec09__card {
    margin-top: 15px;
  }
  .lp01 .sec09__ttl {
    font-size: 22px;
    margin-top: 20px;
  }
}

/* ---------- 10：料金プラン ---------- */
.lp01 .sec10 {
  padding: 120px 20px 5px;
  background: #fff;
}
.lp01 .sec10__ttl {
  font-weight: bold;
  font-size: 36px;
  color: var(--voice-text-dark);
  margin: 0;
}
.lp01 .sec10__grid {
  max-width: 900px;
  margin: 130px auto 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.lp01 .sec10__card {
  flex: 1 1 0;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.lp01 .sec10__campaign {
  position: absolute;
  left: 45px;
  top: -95px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 2;
}
.lp01 .sec10__mascot {
  width: 90px;
  height: auto;
}
.lp01 .sec10__campaign-badge {
  position: relative;
  background: #e754c6;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 7px;
  padding: 10px 17px;
  margin-bottom: 3vw;
  margin-left: 10px;
  white-space: nowrap;
}
.lp01 .sec10__campaign-badge::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 12px;
  width: 17px;
  height: 17px;
  background: #e754c6;
  clip-path: polygon(100% 0%, 100% 100%, 0% 78%);
}
.lp01 .sec10__card-head {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  padding: 20px;
  border-radius: 20px 20px 0 0;
}
.lp01 .sec10__card-head--pink {
  background: var(--voice-gradient-pink);
}
.lp01 .sec10__card-head--blue {
  background: var(--voice-blue);
}
.lp01 .sec10__price {
  text-align: center;
  padding: 34px 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.lp01 .sec10__price-old {
  font-weight: bold;
  font-size: 23px;
  color: var(--voice-text-dark);
  text-decoration: line-through;
  text-decoration-color: #e74dda;
  text-decoration-thickness: 3px;
  opacity: 0.5;
}
.lp01 .sec10__price-arrow {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 36px;
  overflow: hidden;
  flex-shrink: 0;
}
.lp01 .sec10__price-arrow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 162px;
  max-width: none;
  height: auto;
}
.lp01 .sec10__price-new {
  font-weight: bold;
  font-size: 56px;
}
.lp01 .sec10__price-new small {
  font-size: 22px;
  color: var(--voice-text-dark);
}
.lp01 .sec10__price-new--pink {
  color: #e74dda;
}
.lp01 .sec10__price-new--blue {
  color: var(--voice-blue);
}
.lp01 .sec10__list {
  list-style: none;
  margin: 0 35px 35px;
  padding: 20px 3.7vw;
  border-radius: 10px;
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.lp01 .sec10__list--pink {
  background: rgba(250, 72, 194, 0.05);
}
.lp01 .sec10__list--blue {
  background: #f3fbff;
}
.lp01 .sec10__list li {
  font-weight: bold;
  font-size: 16px;
  color: #000;
  padding-left: 30px;
  position: relative;
}
.lp01 .sec10__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--voice-blue);
}
.lp01 .sec10__list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.lp01 .sec10__plus {
  flex-shrink: 0;
  align-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--voice-blue);
  color: transparent;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .lp01 .sec10 {
    padding: 40px 16px 90px;
  }
  .lp01 .sec10__card {
    width: 88%;
    margin: auto;
  }
  .lp01 .sec10__list {
    padding: 30px 30px;
    margin: 0 25px 35px;
  }
  .lp01 .sec10__ttl {
    font-size: 22px;
  }
  .lp01 .sec10__grid {
    flex-direction: column;
    margin-top: 135px;
  }
  .lp01 .sec10__plus {
    transform: rotate(90deg);
  }
  .lp01 .sec10__campaign-badge {
    font-size: 16px;
    padding: 10px 18px;
    margin-bottom: 15vw;
  }
  .lp01 .sec10__price-old {
    font-size: 30px;
  }
  .lp01 .sec10__list li {
    padding-left: 36px;
  }
  .lp01 .sec10__list li::before {
    width: 25px;
    height: 25px;
  }
  .lp01 .sec10__list li::after {
    left: 7px;
    top: 7px;
    width: 11px;
    height: 6px;
  }
}

/* ---------- 11：まずは話を聞いてみる（フォーム） ---------- */

.lp01 .sec11 {
  padding-top: 70px;
}
.lp01 .sec11__hero {
  background: linear-gradient(135deg, #029fe9 0%, #555dfe 100%);
  padding: 70px 20px;
}
.lp01 .sec11__form-wrap,
.lp01 .voice-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 45px 0;
}
.lp01 .sec11__form-wrap .input-box,
.lp01 .voice-form .input-box{
  margin-bottom: 20px;
}
.lp01 .sec11__form-wrap .input-label,
.lp01 .voice-form .input-label{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  color: var(--voice-text-dark);
  margin-bottom: 8px;
}
.lp01 .sec11__form-wrap .input-label.required::after,
.lp01 .voice-form .input-label.required::after{
  content: "必須";
  background: var(--voice-blue);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 10px;
  padding: 2px 8px;
}
.lp01 .sec11__form-wrap .input-area--double,
.lp01 .voice-form .input-area--double{
  display: flex;
  gap: 10px;
}
.lp01 .sec11__form-wrap .input-area--double_inner,
.lp01 .voice-form .input-area--double_inner{
  flex: 1 1 0;
}
.lp01 .sec11__form-wrap .input-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.lp01 .sec11__form-wrap .input-label {
  flex-shrink: 0;
  width: 160px;
  margin-bottom: 0;
  padding-top: 8px;
}
.lp01 .sec11__form-wrap .input-area--single,
.lp01 .sec11__form-wrap .input-area--double {
  flex: 1;
  min-width: 0;
}
.lp01 .sec11__form-wrap .form-control,
.lp01 .voice-form .form-control,
.lp01 .sec11__form-wrap .form-select,
.lp01 .voice-form .form-select {
  width: 100%;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #F2F6F9;
}
.lp01 .sec11__form-wrap .form-select,
.lp01 .voice-form .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 9px;
}
.lp01 .sec11__form-wrap textarea.form-control,
.lp01 .voice-form textarea.form-control{
  resize: vertical;
}
.lp01 .sec11__form-wrap .validation-text,
.lp01 .voice-form .validation-text{
  color: #e74dda;
  font-size: 12px;
}
.lp01 .sec11__form-wrap hr,
.lp01 .voice-form hr{
  border: none;
  border-top: 1px solid #d9d9d9;
  margin: 45px 0;
}
.lp01 .sec11__form-wrap .contact-policy,
.lp01 .voice-form .contact-policy{
  font-size: 13px;
  line-height: 1.7;
  color: #6f6f6f;
  padding: 1px 0px;
}
.lp01 .sec11__form-wrap .policy-link,
.lp01 .voice-form .policy-link{
  color: var(--voice-blue);
}
.lp01 .sec11__form-wrap .form-checkbox,
.lp01 .voice-form .form-checkbox{
  margin: 43px 20px;
}
.lp01 .sec11__form-wrap .label-checkbox,
.lp01 .voice-form .label-checkbox{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--voice-text-dark);
}
.lp01 .sec11__form-wrap .checkbox-input,
.lp01 .voice-form .checkbox-input{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp01 .sec11__form-wrap .form--btn,
.lp01 .voice-form .form--btn{
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 30px auto 0;
  background: #dee4e4;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 16px 20px;
  cursor: not-allowed;
}
.lp01 .sec11__form-wrap .form--btn:not(:disabled),
.lp01 .voice-form .form--btn:not(:disabled){
  background: var(--voice-gradient-pink);
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .lp01 .sec11__hero {
    padding: 40px 16px;
  }
  .lp01 .sec11__form-wrap,
.lp01 .voice-form {
    padding: 45px 20px 100px;
  }
  .lp01 .sec11__form-wrap .input-box {
    display: block;
    margin-bottom: 30px;
  }
  .lp01 .sec11__form-wrap .input-label {
    width: auto;
    padding-top: 0;
    margin-bottom: 8px;
  }
}

/* ---------- 資料ダウンロード用 右固定スライドパネル ---------- */
.lp01 .dl-panel {
  position: fixed;
  inset: 0;
  z-index: 14;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: visibility 0s linear 0.5s;
}
.lp01 .dl-panel.is-open {
  visibility: visible;
  transition-delay: 0s;
}
.lp01 .dl-panel__catcher {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.lp01 .dl-panel__body {
  position: absolute;
  top: 73px;
  right: -420px;
  bottom: 0;
  width: 420px;
  background: #fff;
  max-width: 92vw;
  box-shadow: -4px 0 20px 0 rgba(0, 0, 0, 0.15);
  border-left: 1px solid transparent;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  transition: right 0.5s, width 0.5s, padding-left 0.5s, box-shadow 0.5s,
    border-color 0.5s;
}
.lp01 .dl-panel__contents {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.lp01 .dl-panel.is-open .dl-panel__body {
  right: 0;
}
.lp01 .dl-panel__close {
  position: absolute;
  top: 1%;
  right: -1px;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #bebebe;
  cursor: pointer;
  z-index: 1;
}
/* フォーム項目部分だけをスクロールさせ、送信ボタンは下部に固定表示する */
.lp01 .dl-panel__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 11px 0px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* 旧Edge/IE */
}
.lp01 .dl-panel__scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge */
}
.lp01 .dl-panel__footer {
  flex-shrink: 0;
  padding: 16px 30px 24px;
  background: #fff;
}
.lp01 .dl-panel__footer .form--btn {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  background: #dee4e4;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 16px 20px;
  cursor: not-allowed;
  z-index: 0;
}
.lp01 .dl-panel__footer .form--btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #6b2be8;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.lp01 .dl-panel__footer .form--btn:not(:disabled) {
  background: var(--voice-gradient-pink);
  cursor: pointer;
}
.lp01 .dl-panel__footer .form--btn:not(:disabled):hover {
  opacity: 1;
}
.lp01 .dl-panel__footer .form--btn:not(:disabled):hover::after {
  opacity: 1;
}
.lp01 .dl-panel__head {
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.lp01 .dl-panel__head-sub {
  font-size: 18px;
  color: #333;
  margin: 0 0 4px;
}
.lp01 .dl-panel__head-ttl {
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
  color: var(--voice-blue);
  margin: 0;
}
@media (max-width: 991.98px) {
  .lp01 .dl-panel__body {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
  .lp01 .dl-panel.is-open .dl-panel__body {
    right: 0;
  }
  .lp01 .dl-panel__scroll {
    padding: 30px 16px 16px;
  }
  .lp01 .dl-panel__footer {
    padding: 12px 16px 20px;
  }
}
/* ワイドスクリーン(側面ガター表示領域)では、オーバーレイではなく
   コンテンツ（ヘッダーを除く .contents）を左に詰めてフォーム分のスペースを確保する。
   ヘッダー（.l-header / .fixed-header）と side-fixed-cta は .contents の外にあるため、
   パネルの開閉に関わらず常にデザイン通りのまま変化しない。 */
@media (min-width: 980px) {
  .lp01 .contents {
    transition: margin-right 0.5s ease;
  }
  .lp01.has-dl-panel-open .contents {
    margin-right: 320px;
  }
  .lp01.has-dl-panel-open .dl-panel__body {
    width: 320px;
    box-shadow: none;
    border-color: #e8e8e8;
    padding-left: 20px;
  }
  .lp01.has-dl-panel-open .side-fixed-cta {
    display: none;
  }
}

/* ---------- side fixed CTA バナー（ワイドスクリーン限定・SPは非表示） ---------- */
.lp01 .side-fixed-cta {
  display: none;
}
@media (min-width: 980px) {
  .lp01 .side-fixed-cta {
    display: block;
    position: fixed;
    top: 220px;
    right: 0;
    width: 115px;
    height: 276px;
    z-index: 1;
    transition: transform 0.25s ease;
  }
  .lp01 .side-fixed-cta:hover {
    opacity: 1;
  }
  .lp01 .side-fixed-cta__bar {
    position: absolute;
    right: 0;
    top: 32px;
    bottom: 0;
    width: 58px;
    background: var(--voice-gradient-blue);
    border-radius: 5px 0 0 5px;
    z-index: 2;
  }
  .lp01 .side-fixed-cta:hover .side-fixed-cta__bar {
    background: linear-gradient(135deg, #555dfe 0%, #029fe9 100%);
    
  }
  .lp01 .side-fixed-cta__text {
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 149px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 5px;
    z-index: 2;
  }
  .lp01 .side-fixed-cta__bubble {
    position: absolute;
    left: 10px;
    top: -1px;
    background-image: url("https://dev-images.shain-voice.com/lp/001/img/cta__bubble_bg.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: var(--voice-blue);
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
    padding: 20px 24px;
  }
  .lp01 .side-fixed-cta__mascot {
    position: absolute;
    left: -23px;
    top: 142px;
    width: 300px;
    height: auto;
    z-index: -1;
    transform: rotate(-2deg) translateX(17px);
    transition: transform 0.25s ease;
  }
  .lp01 .side-fixed-cta:hover .side-fixed-cta__mascot {
    transform: rotate(-4deg) translateX(0);
  }
  .lp01 .side-fixed-cta__arrow {
    position: absolute;
    right: 19px;
    bottom: 14px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  }
  .lp01 .side-fixed-cta__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--voice-blue);
    border-right: 2px solid var(--voice-blue);
    border-radius: 1px;
    transform: translate(-60%, -50%) rotate(45deg);
  }
}

/* ---------- 共通ボタン：ホバー挙動 ---------- */
/* btn--primaryのベース背景はグラデーションのため、ホバー時の単色への
   background切り替えをそのままtransitionすると、background-imageが
   補間できず一瞬透明を経由して点滅して見える。単色レイヤーを別の
   疑似要素にして、opacityだけをフェードさせることで点滅を防ぐ。 */
.lp01 .btn--primary {
  z-index: 0;
}
.lp01 .btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #6b2be8;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.lp01 .btn.btn--primary:hover {
  opacity: 1;
}
.lp01 .btn.btn--primary:hover::after {
  opacity: 1;
}
.lp01 .btn.btn--outline:hover {
  background: var(--voice-blue);
  color: #fff;
  opacity: 1;
}
