/* ============================================================
  Conne LP - カスタムスタイルシート
  ベース: Tailwind CSS CDN
  このファイル: カスタムプロパティ・独自スタイル・アニメーション
  文字コード: UTF-8
============================================================ */

/* ============================================================
  カスタムプロパティ（CSS変数）
============================================================ */
:root {
  /* カラー */
  --color-orange:       #ff6300;
  --color-orange-dark:  #f36400;
  --color-orange-light: #f7931e;
  --color-teal:         #007d87;
  --color-cream-bg:     #fef9e6;
  --color-text:         #333333;

  /* グラデーション: オレンジ（CTAボタン・ナンバーバッジ） */
  --gradient-orange: linear-gradient(90deg, #f36400 0%, #f7931e 100%);

  /* グラデーション: グリーン（Oneシリーズバッジ） */
  --gradient-green: linear-gradient(90deg, #ddf9ed 0%, #8de1db 100%);

  /* ボタン: ティールブルー */
  --gradient-teal: linear-gradient(90deg, #007d87 0%, #009aa6 100%);

  /* CTA背景（オレンジバナー） */
  --gradient-cta-bg: linear-gradient(135deg, #f36400 0%, #f7931e 60%, #ffc96e 100%);

  /* ボーダー半径 */
  --radius-btn: 46.6px;
}

/* ============================================================
  ベース
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif!important;
  color: var(--color-text);
  line-height: 1.7;
  background: #ffffff;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ============================================================
  セクション見出し（共通）
  - 43px / Noto Sans JP W8（font-weight:800）
============================================================ */
.section-title {
  font-size: 43px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-text);
}

/* ============================================================
  リード文（24px / W7 = font-weight:700）
============================================================ */
.reason-lead,
.features-lead {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  width: fit-content;
  text-align: left;
  margin: 1em auto 2em;
}

/* ============================================================
  背景色クラス
============================================================ */
.section-bg-cream {
  background-color: var(--color-cream-bg);
}

/* ============================================================
  ボタン: オレンジグラデーション
============================================================ */
.btn-orange-gradient {
  background: var(--gradient-orange);
  border-radius: var(--radius-btn);
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(243, 100, 0, 0.35);
}
.btn-orange-gradient:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(243, 100, 0, 0.45);
}

/* ============================================================
  ボタン: ティールブルー
============================================================ */
.btn-teal {
  background: var(--gradient-teal);
  border-radius: var(--radius-btn);
  color: #ffffff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 125, 135, 0.3);
}
.btn-teal:hover {
  opacity: 0.88;
  box-shadow: 0 6px 20px rgba(0, 125, 135, 0.4);
}

/* ============================================================
  オレンジグラデーション背景ユーティリティ
============================================================ */
.orange-gradient-bg {
  background: var(--gradient-orange);
}

/* ============================================================
  Oneシリーズバッジ（グリーングラデーション）
============================================================ */
.one-badge {
  background: var(--gradient-green);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text);
}

/* 右上固定のOneバッジ */
.one-badge-corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: var(--gradient-green);
  border-bottom-left-radius: 18px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  color: #007d87;
}

/* ============================================================
  ヘッダー
============================================================ */
#site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* ハンバーガーアニメーション */
#hamburger-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#hamburger-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
#hamburger-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* スマホメニュー */
#sp-menu.is-open {
  display: flex !important;
}
/* ============================================================
  ヒーローセクション
============================================================ */
.hero-section {
  background: var(--gradient-orange);
  width: 100%;
  overflow: hidden;
}

.hero-inner {
  padding-top: 24px;
  padding-bottom: 45px;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-left {
  position: relative;
  flex: 0 0 60%;
  max-width: 60%;
}

.hero-right {
  flex: 0 0 40%;
  max-width: 40%;
  padding-left: 2em;
}

.hero-logo {
  position: absolute;
  top: 1%;
  left: 1%;
  width: 150px;
  max-width: 42%;
  height: auto;
}

.hero-copy-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: fit-content;
}

.hero-copy-main {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  font-style: italic;
  transform-origin: left bottom;
  padding-bottom: 0.2em;
}

.hero-copy-accent {
  font-size: 80px;
  font-weight: 900;
  color: #ffff00;
  line-height: 1.02;
  font-style: italic;
  transform-origin: left bottom;
}

.hero-line{
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-achievements {
  width: 220px;
  max-width: 38%;
  height: auto;
  margin-top: 40px;
  margin-left: 20px;
}

.hero-sub-copy {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-feature-lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 8px 0;
  margin: 0.2em 0!important;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-feature-grid span {
  background: #f5f0e8;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #ff6300;
  padding: 8px 6px;
  line-height: 1.2;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 3em;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 35px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  padding: 18px 26px 18px 92px;
  box-shadow: 3px 3px 0 #007d87;
  width: 520px;
  max-width: 100%;
  overflow: hidden;
}
.hero-btn{
position: relative;
}
.items-center{
  display: flex!important;
}
/* CTAに控えめな光沢を流す */
.hero-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;
  width: 30%;
  height: 180%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-180%) rotate(16deg);
  animation: cta-shine 3.8s linear infinite;
  pointer-events: none;
}

@keyframes cta-shine {
  0% {
    transform: translateX(-180%) rotate(16deg);
  }
  35%,
  100% {
    transform: translateX(520%) rotate(16deg);
  }
}

.hero-cta-primary {
  background: #007d87;
  border: 3px solid #fff;
  color: #fff;
}

.hero-cta-secondary {
  background: #fff;
  border: 3px solid #007d87;
  color: #007d87;
}

.hero-cta-illust {
  position: absolute;
  left: 16px;
  bottom: 8px;
  width: 110px;
  height: auto;
  transform: translateY(8%);
  z-index: 1;
}
.hero-cta-illust.middle{
  width: 112px;
  bottom: 9px;
}
.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ヒーロータイトルのオレンジアウトライン文字（「戻れない！」） */
.text-outline-orange {
  color: #ffffff;
  -webkit-text-stroke: 0px transparent;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
}

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
}

/* 初期費用無料バッジ */
.badge-free {
  animation: badge-pop 0.6s ease-out 0.4s both;
}
@keyframes badge-pop {
  0%   { transform: scale(0.5); opacity: 0; }
  80%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
  ロゴスライダー（Pure CSS 無限ループ）
============================================================ */
.logo-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* 端での出入りを滑らかに見せるフェード */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content; /* 子要素の合計幅に広げる */
  will-change: transform;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
}

.client-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.client-title {
  font-size: 43px;
  line-height: 1.35;
  color: #333;
}

.text-orange-accent {
  color: #ff6300;
}

/* スマホでロゴを少し小さく */
@media (max-width: 768px) {
  .logo-slider-track { gap: 22px; }

  .client-logo-img {
    height: 42px;
  }

  .client-title {
    font-size: 28px;
  }

  .hero-logo{
    top: 3%;
    left: 2%;
    width: 110px;
  }
}

/* ============================================================
  選ばれる理由カード
============================================================ */
.reason-card-title {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--color-orange);
}

#reason {
  position: relative;
}

#reason::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #fef9e6;
  z-index: 2;
}

.reason-card-inner {
  position: relative;
  overflow: visible;
  padding-top: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reason-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 99, 0, 0.12);
}

.reason-num-badge {
  position: absolute;
  left: -12px;
  top: -12px;
  z-index: 1;
}

.reason-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reason-text {
  flex: 0 0 80%;
  max-width: 80%;
}

.reason-illust {
  flex: 0 0 20%;
  max-width: 20%;
  height: auto;
  object-fit: contain;
}

.conne-window-center{
  max-width: 36rem!important;
}

/* ============================================================
  CTA バナーセクション
============================================================ */
.cta-banner-section {
  background: var(--gradient-cta-bg);
}

/* ============================================================
  Features（機能）バッジ
============================================================ */
.features-badge {
  background: var(--gradient-orange);
  font-size: 18px;
  padding: 10px 40px;
}

/* ============================================================
  数字で見る Conne カード
============================================================ */
.result-num {
  line-height: 1.1;
  margin-top: 1rem;
}

.result-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 99, 0, 0.1);
}

/* ============================================================
  お客様の声カルーセル（Swiper）
============================================================ */

/* タイトル吹き出し枠 */
.voice-title-bubble {
  display: inline-block;
  border: 2px solid #ff6300;
  border-radius: 999px;
  padding: 10px 60px;
  position: relative;
  background: #fff;
}
/* 吹き出し下の三角 */
.voice-title-bubble::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ff6300;
}
/* 吹き出し三角の白い重ね（内側） */
.voice-title-bubble::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
  z-index: 1;
}

.voice-swiper {
  padding: 0 20px 20px !important;
}

/* 写真ラッパー（タグを重ねるため relative） */
.voice-photo-wrap {
  position: relative;
}

/* カテゴリタグ */
.voice-category-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ff6300;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 0 6px 0 0;
  line-height: 1.4;
}

/* キャッチコピー（オレンジの左ボーダー付き） */
.voice-catch-copy {
  border-left: 5px solid #ff6300;
  padding-left: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin: 1.5em 0 1.5em 0.8em;
  line-height: 1.4;
}

/* 詳しく見てみるリンク */
.voice-detail-link {
  display: inline-block;
  color: #ff6300;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}
.voice-detail-link:hover {
  text-decoration: underline;
}

.voice-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  width: 320px;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Swiperページネーションのカスタム色 */
.voice-swiper-pagination .swiper-pagination-bullet {
  background-color: #cccccc;
  opacity: 1;
}
.voice-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff6300;
}

/* ナビゲーションボタン */
.voice-nav-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
}

.voice-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: #ff6300;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255,99,0,0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.voice-nav-btn:hover {
  background-color: #e05500;
  transform: scale(1.08);
}

/* ============================================================
  料金プランカード
============================================================ */
.pricing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 99, 0, 0.15);
}
.pricing-featured {
  /* おすすめプランを少し大きく */
  transform: scale(1.03);
  z-index: 1;
}
.pricing-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

/* ============================================================
  FAQ アコーディオン
============================================================ */
.faq-question {
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}
.faq-question:hover {
  background: rgba(255, 99, 0, 0.04);
}

/* FAQ展開時のアイコン回転 */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
  最終CTAセクション（ダーク背景）
============================================================ */
.cta-final-section {
  background: var(--gradient-cta-bg);
  position: relative;
  overflow: hidden;
}
.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

/* ============================================================
  スクロールフェードイン（Intersection Observer）
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
  セクション余白（PC: 100px / SP: 60px）
============================================================ */
.py-16 { /* 64px */
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* 大きいセクション（100px） */
.py-24 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
@media (min-width: 768px) {
  .py-24 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

/* ============================================================
  レスポンシブ: テキストサイズ調整
============================================================ */
@media (max-width: 767px) {
  .reason-lead,
  .features-lead {
    font-size: 16px;
  }

  .reason-card-title {
    font-size: 17px;
  }

  .reason-content {
    align-items: flex-start;
  }

  .reason-illust {
    max-width: 64px;
  }

  /* ヒーロータイトル */
  .hero-title {
    font-size: 40px;
  }

  .one-badge-corner {
    font-size: 11px;
    padding: 6px 10px;
    gap: 6px;
  }

  .one-badge-corner img {
    height: 14px;
  }

  .hero-inner {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .hero-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-left,
  .hero-right {
    flex: none;
    max-width: 100%;
  }

  .hero-copy-main {
    font-size: 58px;
  }

  .hero-copy-accent {
    font-size: 70px;
  }

  .hero-sub-copy {
    font-size: 20px;
  }

  .hero-copy-row {
    gap: 10px;
    display: block;
  }

  .hero-achievements {
    width: 200px;
    margin: 1em auto;
  }

  .hero-feature-lead {
    font-size: 14px;
  }

  .hero-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-feature-grid span {
    font-size: 14px;
  }

  .hero-cta {
    width: 100%;
    font-size: 20px;
    min-height: 66px;
    padding: 16px 20px 16px 82px;
  }

  .hero-cta-illust {
    left: 12px;
    width: 92px;
    bottom: 9px;
  }

  /* 料金プランのおすすめカードはスマホでは等倍に */
  .pricing-featured {
    transform: scale(1);
  }
  .pricing-featured:hover {
    transform: scale(1) translateY(-6px);
  }
}

/* ============================================================
  スクロールトップボタン（オプション）
============================================================ */
#scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-orange);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(243, 100, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  z-index: 100;
}
#scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
#scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 100, 0, 0.5);
}
/* ============================================================
  追加・ライブラリ変更
============================================================ */
.ttl-large{
  font-size: 1.3em
}
.py-8{
  padding-top: 3rem!important;
  padding-bottom: 3rem!important;
}
.text-lg{
  font-size: 2rem!important;
}
.feature-info{
    width: fit-content;
      position: relative; /* 三角形を配置する基準にする */
      background-color: #FDF1C1; /* 画像の背景色に近い薄黄色 */
      color: #333; /* 通常のテキスト色 */
      padding: 16px 32px; /* 内側の余白（Tailwindのpx-8 py-4相当） */
      border-radius: 9999px; /* 完全な丸角（Tailwindのrounded-full相当） */
      font-size: 18px; /* 文字サイズ（Tailwindのtext-lg相当） */
      font-weight: 800; /* Extra bold (Noto Sans JPに存在) */
      text-align: center;
      /* 影をつける（Tailwindのshadow-md相当） */
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      margin: auto;
    }
.feature-info::after {
      content: ''; /* 擬似要素に必須 */
      position: absolute;
      bottom: -10px; /* 三角形の高さ分だけ下にずらす */
      left: 50%; /* 吹き出しの左から50%の位置に配置 */
      transform: translateX(-50%); /* 自身の幅の半分だけ左に戻して中央揃え */
      
      /* ボーダーを使って三角形を作る */
      border-width: 10px 10px 0 10px; /* 上・左・右・下 */
      border-style: solid;
      border-color: #FDF1C1 transparent transparent transparent; /* 上側（背景色）、左右下（透明） */
    }
  .feature-title{
    background-color: #fef9e6;
    color: #ff6301!important;
    border: solid 1.5px #ff6301;
    border-radius: 50px;
    font-weight: 600;
  }
  .feature-pop{
    margin-bottom: 1.5rem!important;
  }
  .h-16{
    height: 7rem;
    margin-top: 1em;
  }
  .feature-name{
    margin-top: 1em;
    font-size: 20px;
  }
  .feature-item{
    height: 300px;
    position: relative;
  }
  .feature-img{
    position: absolute;
    bottom: 0;
    width: auto;
    height: 150px!important;
    left: 50%;
    transform: translateX(-50%);
  }
  .optimize-info{
    margin: auto!important;
    width: fit-content!important;
    display: flex;
  }
  .optimize-img{
    margin-right: 1em;
  }
  .optimize-text{
    font-size: 20px!important;
    line-height: 1.5em!important;
    margin-top: 1em;
  }
  .case-box{
    position: relative;
  }
  .case-title{
    background-color: #ff6300;
    border-radius: 50px;
    color: #fff;
    font-size: 18px!important;
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 1.8em;
    padding: 0.3em 1em;
  }
  .number-case{
    text-align: left;
  }
  .number-case-img{
    display: block;
    margin: 1.5em auto;
    width: auto!important;
    height: 4.5rem!important;
  }
  .voice-ttl-text{
    font-size: 24px;
  }
  .voice-title-bubble-box{
    width: fit-content!important;
    margin: 0 auto 2.5em!important;
  }
  .voices-section{
    padding-top: 0!important;
  }
  @media (min-width: 640px) {
  .voice-swiper .swiper-slide {
    width: 320px;
    height: auto; /* スライド自体はautoに */
  }
}

/* カード全体を同じ高さに */
.voice-swiper .swiper-slide {
  display: flex;
}

.voice-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* テキストエリアをflexで伸ばす */
.voice-card .p-5 {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 説明テキストを伸ばして、リンクを底部に固定 */
.voice-card .p-5 p.text-sm {
  flex: 1;
}

.voice-detail-link {
  margin-top: auto;
}
#features {
  position: relative;
}
#features::after{
  content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 20px solid #fff;
    z-index: 2;
}
.voices-triangle {
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #fef9e6;
  margin: 0 auto;
  position: relative;
  top: 20px;
  z-index: 100;
  margin-top: -20px;
}
.cta3 {
  position: relative;
  z-index: 1;
}
.company-info{
  margin: 1em 0!important;
  display: block;
}
.number-ttl{
  margin-bottom: 1em;
}
.start-ttl{
  margin-bottom: 1em!important;
}
.cta-green{
  box-shadow:5px 6px 0 #007d87;
}
.hero-area{
  padding-top: 2rem!important;
  padding-bottom: 2rem!important;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.shakin-text {
  display: inline-block;
  animation: slideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
  animation-delay: 0.3s;
}
.shadow-sm-orange{
  --tw-shadow: 0 2px 5px 0 #f7931e;
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #f7931e), var(--tw-ring-shadow, 0 0 #f7931e), var(--tw-shadow);
}
@media (max-width: 768px) {
  .section-title{
    font-size: 30px!important;
  } 
  .text-lg{
    font-size: 1.2em!important;
  }
  .hero-cta-illust.middle{
    width: 85px;
  }
  .voice-title-bubble{
    padding: 10px 45px;
  }
  .function-box{
    display: block!important;
  }
  .feature-item{
    height: 250px;
    margin: 1em;
  }
.feature-img{
  height: 110px!important;
}
.voice-ttl-text{
  font-size: 18px!important;
}
.hero-sub-copy{
  font-size: 18px;
}
}