/*
Theme Name: LifeUp Money
Theme URI: https://lifeupmoney.com/
Author: LifeUp Money Team
Author URI: https://lifeupmoney.com/
Description: 投資の知識ゼロからでも3ヶ月で自信がつくパーソナルマネートレーニングサービスのWordPressテーマ
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lifeup-money
Tags: custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ======= 基本設定 ======= */
:root {
  --primary-color: #f8a5c2;
  /* メインカラー（パステルピンク） */
  --secondary-color: #c5a3ff;
  /* セカンダリーカラー（パステルパープル） */
  --accent-color: #92ddea;
  /* アクセントカラー（パステルブルー） */
  --light-color: #f9f7fd;
  /* 薄い背景色 */
  --dark-color: #5a5a7a;
  /* テキストの暗い色 */
  --success-color: #b5e8bf;
  /* 成功のための色（パステルグリーン） */
  --warning-color: #ffd8a3;
  /* 注意のための色（パステルオレンジ） */
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  --button-shadow: 0 10px 25px rgba(248, 165, 194, 0.3);
  --border-radius: 16px;
  --button-radius: 50px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'M PLUS Rounded 1c', 'Nunito', sans-serif;
  color: var(--dark-color);
  line-height: 1.7;
  background-color: #ffffff;
  background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
  background-attachment: fixed;
  padding-top: 80px;
  /* ヘッダーの高さ+paddingに合わせて調整 */
}

@media (max-width: 768px) {
  body {
    padding-top: 65px;
    /* モバイル向けヘッダーの高さに合わせて調整 */
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.mobile-br {
  display: none;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  color: var(--dark-color);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.subtitle {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  font-weight: 500;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.small-text {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}

/* ======= ボタン ======= */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: var(--button-radius);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: var(--button-shadow);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: white;
}

.btn:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
}

.btn-secondary::before {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

.btn-small {
  padding: 10px 22px;
  font-size: 0.95rem;
}

.btn-large {
  padding: 16px 42px;
  font-size: 1.2rem;
  font-weight: 700;
}



.cta-button {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  color: white;
  transform: translateY(-2px);
}

.line-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #06C755;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  box-shadow: var(--shadow);
}

.line-btn:hover {
  background-color: #05a847;
  color: white;
  transform: translateY(-2px);
}

/* ======= ヘッダー改善 ======= */
header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  position: fixed;
  /* stickyからfixedに変更 */
  top: 0;
  left: 0;
  /* 追加 */
  width: 100%;
  /* 追加 */
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(248, 165, 194, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

.logo h1::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  bottom: 5px;
  right: -15px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(248, 165, 194, 0.5);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  font-size: 1.05rem;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
  border-radius: 3px;
}

nav ul li a:hover::after {
  width: 100%;
}

/* モバイルメニューアイコン */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  display: block;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle span:not(:last-child) {
  margin-bottom: 6px;
}

nav.active {
  visibility: visible;
}

nav.active ul {
  right: 0;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ======= ヒーロー ======= */
.hero {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.gradient-title {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #f8a5c2, #c5a3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-question {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-box {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}

.cta-highlight {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.primary-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 1.2rem;
  text-align: center;
  background: linear-gradient(45deg, #f8a5c2, #c5a3ff);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(248, 165, 194, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #c5a3ff, #f8a5c2);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(248, 165, 194, 0.4);
}

.primary-btn:hover::before {
  opacity: 1;
}

.line-cta {
  text-align: center;
  margin-top: 15px;
  font-size: 1rem;
}

.line-link {
  color: #06C755;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.line-link:hover {
  text-decoration: underline;
}

/* メディアクエリ */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .mobile-br {
    display: block;
  }

  .strength-cards,
  .plan-cards,
  .reason-boxes,
  .feature-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .comparison {
    flex-direction: column;
  }

  .step-box {
    width: 100%;
    margin-bottom: 30px;
  }

  .money-types {
    grid-template-columns: 1fr 1fr;
  }

  nav ul {
    gap: 15px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

  .section-title {
    font-size: 1.6rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }



  .money-types {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    padding-bottom: 25px;
  }

  .step {
    min-width: 160px;
    padding: 20px 15px;
  }

  .step-arrow {
    font-size: 1.4rem;
    margin: 0 5px;
  }

  nav ul {
    display: none;
  }

  .cta-button {
    display: inline-block;
  }
}

/* ======= FAQ アコーディオン ======= */
.faq-item .answer {
  display: none;
  padding: 15px 20px 15px 45px;
}

.faq-item.active .answer {
  display: block;
  animation: fadeIn 0.4s ease;
}

.faq-item.active .toggle-icon .fa-plus:before {
  content: '\f068';
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 追加のスタイル */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.strength-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.strength-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-number {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 15px;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  margin-top: 20px;
}



.strength-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  min-height: 60px;
}

/* 比較表 - 100点レベルの完璧な実装 */
.comparison-chart {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 50px 0;
  overflow: hidden;
}

.comparison-chart::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 165, 194, 0.08) 0%, rgba(248, 165, 194, 0) 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  z-index: 0;
}

.comparison-chart h3 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  font-weight: 700;
  z-index: 1;
}

.comparison-chart h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.comparison-chart table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  z-index: 1;
}

.comparison-chart th,
.comparison-chart td {
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.comparison-chart th {
  background-color: #f9f7fd;
  font-weight: 600;
  color: var(--dark-color);
  border-bottom: 2px solid rgba(248, 165, 194, 0.2);
}

.comparison-chart th:first-child {
  border-top-left-radius: 10px;
  text-align: left;
}

.comparison-chart th:last-child {
  border-top-right-radius: 10px;
}

.comparison-chart th:nth-child(2) {
  background: linear-gradient(to bottom, rgba(248, 165, 194, 0.1), rgba(248, 165, 194, 0.05));
  color: var(--primary-color);
  font-weight: 700;
}

.comparison-chart td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-chart td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-chart td:nth-child(2) {
  background: rgba(248, 165, 194, 0.03);
}

.comparison-chart tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.comparison-chart tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.comparison-chart tr:last-child td {
  border-bottom: none;
}

.comparison-chart tr:hover td {
  background-color: rgba(248, 165, 194, 0.03);
}

.comparison-chart tr:hover td:nth-child(2) {
  background-color: rgba(248, 165, 194, 0.08);
}

.check {
  color: #4CAF50;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 3px rgba(76, 175, 80, 0.2));
}

.cross {
  color: #F44336;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 3px rgba(244, 67, 54, 0.2));
}

.warning {
  color: #FF9800;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 3px rgba(255, 152, 0, 0.2));
}

/* アニメーションの追加 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comparison-chart tbody tr {
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}

.comparison-chart tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.comparison-chart tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.comparison-chart tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

/* モバイル対応 - パーフェクトバージョン */
@media (max-width: 768px) {
  .comparison-chart {
    padding: 25px 15px;
    margin: 40px 0;
    overflow: visible !important;
  }

  .comparison-chart h3 {
    font-size: 1.4rem;
    text-align: center;
    display: block;
    margin-bottom: 30px;
  }

  .comparison-chart h3::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }

  /* テーブルコンテナ - スクロール対応 */
  .table-container {
    width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -15px;
    padding: 0 15px 15px;
    position: relative;
    z-index: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
  }

  /* スクロールバーのカスタマイズ */
  .table-container::-webkit-scrollbar {
    height: 6px;
  }

  .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
  }

  .table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
  }

  .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }

  .comparison-chart table {
    min-width: 700px;
    margin: 0;
  }

  .comparison-chart th,
  .comparison-chart td {
    font-size: 0.9rem;
    padding: 12px 10px;
  }

  /* 左端固定機能 - さらに強化 */
  .comparison-chart th:first-child,
  .comparison-chart td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  }

  .comparison-chart th:first-child {
    background: #f9f7fd;
  }

  .comparison-chart td:first-child {
    background: white;
  }

  /* スクロールヒント - 目立つように */
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 0;
    padding: 8px 15px;
    background: rgba(248, 165, 194, 0.08);
    border-radius: 30px;
    width: fit-content;
    font-size: 0.85rem;
    color: var(--dark-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0.9;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.9;
    }

    50% {
      transform: scale(1.05);
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 0.9;
    }
  }

  .scroll-hint i {
    margin-right: 6px;
    color: var(--primary-color);
    animation: scroll-hint 1.5s ease-in-out infinite;
  }

  @keyframes scroll-hint {
    0% {
      transform: translateX(-3px);
    }

    50% {
      transform: translateX(3px);
    }

    100% {
      transform: translateX(-3px);
    }
  }

  .scroll-hint:hover {
    background: rgba(248, 165, 194, 0.15);
    transform: translateY(-2px);
  }
}

@media (max-width: 576px) {
  .comparison-chart {
    padding: 20px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .comparison-chart h3 {
    font-size: 1.2rem;
  }

  .comparison-chart th,
  .comparison-chart td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .comparison-chart td:first-child {
    font-size: 0.85rem;
    font-weight: 600;
    padding-left: 10px;
  }

  .check,
  .cross,
  .warning {
    font-size: 1.1rem;
  }

  .scroll-hint {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.satisfaction-stats {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  max-width: 400px;
}

.stat-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.highlight {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  display: block;
  margin: 15px 0;
}

.cta-center {
  text-align: center;
  margin: 40px 0 20px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.plan-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card.standard {
  background-color: rgba(197, 163, 255, 0.05);
  border: 1px solid rgba(197, 163, 255, 0.2);
}

.plan-card.light {
  border-top: 5px solid var(--primary-color);
}

.plan-card.standard {
  border-top: 5px solid var(--secondary-color);
  transform: scale(1.05);
  z-index: 2;
}

.plan-card.advanced {
  border-top: 5px solid var(--accent-color);
}



.reason-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reason-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reason-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-box .reason-number {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 15px;
}

.reason-box h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-left: 20px;
}



/* フッター改善 */
footer {
  background: linear-gradient(to bottom, var(--light-color), #fff);
  color: var(--dark-color);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(248, 165, 194, 0.2);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 165, 194, 0.08) 0%, rgba(248, 165, 194, 0) 70%);
  bottom: -300px;
  right: -300px;
  border-radius: 50%;
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo h3 {
  font-size: 2rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--dark-color);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav h4,
.footer-company h4,
.footer-contact h4 {
  color: var(--dark-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-nav h4::after,
.footer-company h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.footer-nav ul,
.footer-company ul {
  padding: 0;
}

.footer-nav li,
.footer-company li {
  margin-bottom: 12px;
}

.footer-nav ul a,
.footer-company ul a,
.footer-contact ul a {
  color: var(--dark-color);
  transition: var(--transition);
  position: relative;
  display: inline-block;
  padding-left: 15px;
}

.footer-nav ul a:before,
.footer-company ul a:before,
.footer-contact ul a:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.footer-nav ul a:hover,
.footer-company ul a:hover,
.footer-contact ul a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-nav ul a:hover:before,
.footer-company ul a:hover:before,
.footer-contact ul a:hover:before {
  background: var(--secondary-color);
}

.footer-contact p {
  margin-bottom: 12px;
  color: var(--dark-color);
  position: relative;
  padding-left: 25px;
}

.footer-contact p i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}



.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(248, 165, 194, 0.2);
}

.social-icons a:hover {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transform: translateY(-5px);
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--dark-color);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }

  nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  header {
    padding: 15px 0;
  }

  .logo h1 {
    font-size: 1.7rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
  }

  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  nav.active {
    visibility: visible;
    opacity: 1;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -80%;
    width: 75%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    display: flex !important;
    align-items: flex-start;
    overflow-y: auto;
  }

  nav.active ul {
    right: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  nav ul li a.cta-button {
    margin-top: 15px;
    text-align: center;
    width: 100%;
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }

  .menu-toggle {
    width: 25px;
    height: 18px;
  }

  .menu-toggle span {
    height: 2px;
  }

  .menu-toggle span:not(:last-child) {
    margin-bottom: 5px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  nav ul {
    width: 85%;
    padding: 70px 20px 30px;
  }

  nav ul li a {
    font-size: 1rem;
    padding: 10px 0;
  }
}

/* ヒーローセクションの強化 */
.line-cta {
  margin-top: 15px;
  font-size: 1.1rem;
}

.line-link {
  color: #06C755;
  font-weight: 700;
  transition: var(--transition);
}

.line-link:hover {
  color: #05a847;
}

/* ======= 固定ページ用スタイル ======= */
.site-main {
  min-height: calc(100vh - 160px);
  padding: 40px 0;
  background: white;
}

.page-content {
  background: white;
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.page-header {
  background: var(--light-color);
  padding: 40px 0;
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--primary-color);
}

.page-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

.page-content .entry-content {
  padding: 0;
}

.page-content h1,
.page-content h2,
.page-content h3 {
  color: var(--dark-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content h2 {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.page-content h3 {
  font-size: 1.3rem;
}

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
  margin-top: 0;
}

.page-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.page-content ul,
.page-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-content li {
  line-height: 1.7;
  margin-bottom: 5px;
}

.page-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-content a:hover {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .site-main {
    padding: 20px 0;
  }
  
  .page-content {
    width: 95%;
  }
  
  .page-header {
    padding: 30px 0;
    margin-bottom: 30px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.6rem;
  }
  
  .page-header {
    padding: 25px 0;
    margin-bottom: 25px;
  }
}

/* ======= ジャーニーマップ ======= */
.journey-map {
  padding: 80px 0;
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin: 50px 0;
  overflow-x: auto;
  padding-bottom: 20px;
}

.journey-steps::-webkit-scrollbar {
  height: 8px;
}

.journey-steps::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.journey-steps::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.step {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  width: 200px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex: 0 0 auto;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.step-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.step-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0 5px;
  display: flex;
  align-items: center;
}

/* 投資理由セクション */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.reason-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.reason-number {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-right-radius: 15px;
}

.reason-card p {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.highlight-message {
  text-align: center;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin: 30px 0;
}

.inflation-chart {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.inflation-chart h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.chart-caption {
  text-align: center;
  font-style: italic;
  color: var(--dark-color);
  margin-top: 15px;
}

/* CSS グラフ表現 */
.css-chart {
  width: 100%;
  margin: 30px auto;
  padding: 20px;
  max-width: 800px;
}

.css-chart-container {
  position: relative;
  height: 300px;
  border-left: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  margin: 20px auto;
  padding: 0 20px 20px 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.chart-bars {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  padding: 0 5%;
}

.chart-bar {
  position: relative;
  width: 70px;
  background: linear-gradient(to top, rgba(248, 165, 194, 0.9), rgba(197, 163, 255, 0.7));
  border-radius: 8px 8px 0 0;
  animation: growUp 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  opacity: 0.9;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.chart-bar:hover {
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(197, 163, 255, 0.3);
}

.chart-bar:nth-child(1) {
  height: 100%;
  background: linear-gradient(to top, rgba(248, 165, 194, 0.9), rgba(248, 165, 194, 0.7));
}

.chart-bar:nth-child(2) {
  height: 95%;
  animation-delay: 0.1s;
}

.chart-bar:nth-child(3) {
  height: 90%;
  animation-delay: 0.2s;
}

.chart-bar:nth-child(4) {
  height: 85%;
  animation-delay: 0.3s;
}

.chart-bar:nth-child(5) {
  height: 82%;
  animation-delay: 0.4s;
}

.chart-bar-label {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  color: var(--dark-color);
  width: 120%;
  font-weight: 500;
  padding: 3px 0;
}

.chart-bar-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--dark-color);
  background: white;
  padding: 3px 8px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.chart-y-axis {
  position: absolute;
  left: -80px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-y-label {
  font-size: 0.85rem;
  color: var(--dark-color);
  position: relative;
  padding-right: 10px;
}

.chart-y-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  height: 1px;
  width: 10px;
  background-color: #ddd;
}

.chart-legend {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  margin: 0 15px;
  padding: 5px 10px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chart-legend-color {
  width: 15px;
  height: 15px;
  border-radius: 3px;
  margin-right: 8px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

@keyframes growUp {
  0% {
    height: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    height: var(--chart-height);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .css-chart-container {
    height: 250px;
  }

  .chart-bar {
    width: 50px;
  }

  .chart-y-axis {
    left: -65px;
  }

  .chart-y-label {
    font-size: 0.75rem;
  }

  .chart-bar-value {
    font-size: 0.8rem;
    padding: 2px 6px;
  }
}

@media (max-width: 576px) {
  .css-chart-container {
    height: 200px;
  }

  .chart-bar {
    width: 35px;
  }

  .chart-y-axis {
    left: -60px;
  }

  .chart-y-label {
    font-size: 0.7rem;
  }

  .chart-bar-value {
    font-size: 0.7rem;
    top: -25px;
  }

  .chart-bar-label {
    font-size: 0.8rem;
  }
}

/* LINE診断セクションの高級感アップと明るさ改善 */
.line-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(6, 199, 85, 0.05) 100%);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.line-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 199, 85, 0.08) 0%, rgba(6, 199, 85, 0) 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
}

.line-icon-large {
  font-size: 6rem;
  color: #06C755;
  text-align: center;
  margin-bottom: 20px;
  animation: pulse 3s infinite alternate;
  text-shadow: 0 10px 20px rgba(6, 199, 85, 0.2);
}

.line-btn {
  display: inline-block;
  padding: 16px 38px;
  background: #06C755;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 15px;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.line-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #05a847, #06C755);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.line-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
  color: white;
}

.line-btn:hover::before {
  opacity: 1;
}

.line-qr {
  text-align: center;
  margin-top: 30px;
}

.line-diagnosis h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.line-diagnosis p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* テーブルデザインの高級化 */
.comparison-chart {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

.comparison-chart::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 163, 255, 0.1) 0%, rgba(197, 163, 255, 0) 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
}





.money-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.money-type {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.money-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* テスティモニアルカードのスタイル強化 */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  padding-top: 60px;
  margin-top: 40px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.testimonial-avatar {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

.testimonial-avatar.female {
  background: linear-gradient(135deg, #f8a5c2, #ff85a2);
}

.testimonial-avatar i {
  font-size: 2rem;
  color: white;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 15px;
  font-style: italic;
}

/* アニメーション */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* リッチなエフェクトの追加 */
.strength-card,
.plan-card,
.reason-box,
.money-type {
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.strength-card:hover,
.plan-card:hover,
.reason-box:hover,
.money-type:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

/* 3Dアイコン効果 */
.feature-icon,
.card-icon,
.benefit-icon,
.type-icon {
  position: relative;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* お悩みチェックリスト */
.pain-points {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 165, 194, 0.1) 100%);
  padding: 60px 0;
}

.checklist {
  max-width: 800px;
  margin: 40px auto;
  background: white;
  border-radius: var(--border-radius);
  padding: 30px 40px;
  box-shadow: var(--shadow);
}

.checklist-item {
  position: relative;
  margin-bottom: 20px;
  padding-left: 45px;
  transition: var(--transition);
}

.checklist-item:last-child {
  margin-bottom: 0;
}

.checklist-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checklist-item label {
  display: block;
  position: relative;
  padding: 12px 0;
  padding-right: 15px;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.checklist-item label:before {
  content: '';
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  background: white;
  transition: var(--transition);
}

.checklist-item input[type="checkbox"]:checked+label:before {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
}

.checklist-item label:after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: -39px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.checklist-item input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

.checklist-item:hover label {
  color: var(--primary-color);
}

.checklist-item:hover label:before {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 10px rgba(248, 165, 194, 0.3);
}

.checklist-message {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark-color);
  background: white;
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: var(--shadow);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .checklist {
    padding: 20px 25px;
  }

  .checklist-item {
    padding-left: 40px;
  }

  .checklist-item label {
    font-size: 1rem;
    padding: 10px 0;
  }

  .checklist-item label:before {
    left: -40px;
    width: 24px;
    height: 24px;
  }

  .checklist-item label:after {
    left: -35px;
    font-size: 14px;
  }

  .checklist-message {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  .checklist {
    padding: 15px 20px;
  }

  .checklist-item {
    padding-left: 35px;
  }

  .checklist-item label {
    font-size: 0.95rem;
  }

  .checklist-item label:before {
    left: -35px;
    width: 22px;
    height: 22px;
  }

  .checklist-item label:after {
    left: -31px;
    font-size: 12px;
  }

  .checklist-message {
    font-size: 1rem;
    padding: 10px 15px;
    width: 90%;
  }
}

/* ======= FAQ セクション ======= */
.faq {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(197, 163, 255, 0.1) 100%);
  padding: 60px 0;
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

.faq-item.active {
  box-shadow: var(--hover-shadow);
  border-left: 4px solid var(--primary-color);
}

.question {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.question p {
  margin: 0;
  flex-grow: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
  padding: 0 15px;
}

.q-mark {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.faq-item .answer {
  display: none;
  padding: 5px 25px 20px 70px;
  position: relative;
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
}

.faq-item.active .answer {
  display: block;
  animation: fadeIn 0.5s ease;
}

.a-mark {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  color: white;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 20px;
}

.answer p {
  margin: 15px 0 0;
  color: var(--dark-color);
  line-height: 1.6;
}

.faq-item.active .toggle-icon .fa-plus:before {
  content: '\f068';
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA強化スタイル */
.last-cta {
  padding: 40px;
  margin: 50px auto 0;
  max-width: 800px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.cta-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.cta-text:before,
.cta-text:after {
  content: '';
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, rgba(248, 165, 194, 0), rgba(248, 165, 194, 1), rgba(248, 165, 194, 0));
  width: 120%;
  left: -10%;
}

.cta-text:before {
  top: -10px;
}

.cta-text:after {
  bottom: -10px;
}

.line-option {
  margin: 20px 0;
  font-weight: 600;
  color: var(--dark-color);
  position: relative;
}

.line-option:before,
.line-option:after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 80px;
  background: rgba(0, 0, 0, 0.1);
}

.line-option:before {
  right: calc(50% + 30px);
}

.line-option:after {
  left: calc(50% + 30px);
}

@media (max-width: 768px) {
  .faq-list {
    padding: 0 15px;
  }

  .question p {
    font-size: 1rem;
  }

  .cta-text {
    font-size: 1.2rem;
  }

  .line-option:before,
  .line-option:after {
    width: 60px;
  }

  .line-option:before {
    right: calc(50% + 20px);
  }

  .line-option:after {
    left: calc(50% + 20px);
  }
}

@media (max-width: 576px) {
  .question {
    padding: 15px 20px;
  }

  .question p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .q-mark,
  .a-mark {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .faq-item .answer {
    padding: 5px 20px 15px 60px;
  }

  .a-mark {
    left: 20px;
    top: 15px;
  }

  .last-cta {
    padding: 30px 20px;
  }

  .cta-text {
    font-size: 1.1rem;
  }

  .line-option:before,
  .line-option:after {
    width: 40px;
  }

  .line-option:before {
    right: calc(50% + 15px);
  }

  .line-option:after {
    left: calc(50% + 15px);
  }
}

/* ======= 資産シミュレーションセクション ======= */
.asset-simulation {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 165, 194, 0.15) 100%);
  padding: 70px 0;
  position: relative;
}

.asset-simulation:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.8l7.07 7.414v-.002zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%23f8a5c2' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.case-studies {
  display: grid;
  gap: 30px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.case-study {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(248, 165, 194, 0.2);
  overflow: hidden;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(248, 165, 194, 0.25);
}

.case-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(248, 165, 194, 0.3);
  border: 4px solid white;
}

.case-study h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.case-study h3:after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 8px auto 0;
  border-radius: 2px;
}

.before-after-comparison {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  position: relative;
}

.before,
.after {
  flex: 1;
  padding: 15px;
  border-radius: 12px;
  background-color: rgba(248, 246, 252, 0.7);
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.before {
  border-left: 3px solid #d1d1e0;
}

.after.success {
  background-color: rgba(248, 165, 194, 0.1);
  border-left: 3px solid var(--primary-color);
}

.before h4,
.after h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.before h4 {
  color: #9292a3;
}

.after.success h4 {
  color: var(--primary-color);
}

.before p,
.after p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.small {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 8px;
  color: #787889;
}

.after .small {
  color: #5a5a7a;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.highlight-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
}

.highlight-value::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: rgba(248, 165, 194, 0.3);
  bottom: 0;
  left: 0;
  border-radius: 10px;
  z-index: -1;
}

.testimonials-message {
  margin: 40px auto;
  max-width: 750px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.message-bubble {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  position: relative;
  border: 1px solid rgba(248, 165, 194, 0.2);
}

.message-bubble:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
}

.message-bubble p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  color: var(--dark-color);
}

.message-point {
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.message-point::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: rgba(248, 165, 194, 0.3);
  bottom: 2px;
  left: 0;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 768px) {
  .case-studies {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .case-study {
    padding: 25px;
  }

  .case-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }

  .case-study h3 {
    font-size: 1.2rem;
  }

  .before-after-comparison {
    flex-direction: column;
    gap: 15px;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }

  .before,
  .after {
    width: 100%;
    min-height: auto;
    padding: 12px;
  }

  .message-bubble p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .case-study {
    padding: 20px;
  }

  .case-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .case-study h3 {
    font-size: 1.1rem;
  }

  .before h4,
  .after h4 {
    font-size: 1rem;
  }

  .before p,
  .after p {
    font-size: 0.95rem;
  }

  .small {
    font-size: 0.8rem;
  }

  .highlight-value {
    font-size: 1.1rem;
  }

  .message-bubble {
    padding: 20px;
  }

  .message-bubble p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ======= 無料体験トレーニングの3ステップ ======= */
.how-it-works {
  background-color: var(--light-color);
  padding: 80px 0;
}

.how-it-works .section-title {
  margin-bottom: 50px;
}

.how-it-works .steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.how-it-works .step-box {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 30px;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  position: relative;
  transition: var(--transition);
}

.how-it-works .step-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.how-it-works .step-number {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
}

.how-it-works .step-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.how-it-works .step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 0 5px;
  padding-top: 100px;
}

.how-it-works h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.how-it-works ul {
  text-align: left;
  margin-top: 15px;
  padding-left: 20px;
}

.how-it-works ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  list-style-type: none;
}

.how-it-works ul li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.how-it-works .free-note {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-left: 5px solid var(--primary-color);
}

.how-it-works .free-note p {
  margin-bottom: 0;
  font-weight: 500;
}

/* レスポンシブ調整 */
@media (max-width: 992px) {
  .how-it-works .steps {
    flex-direction: column;
    align-items: center;
  }

  .how-it-works .step-box {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .how-it-works .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
    padding-top: 0px;
  }
}

@media (max-width: 576px) {
  .how-it-works {
    padding: 60px 0;
  }

  .how-it-works .step-box {
    padding: 20px;
  }

  .how-it-works h3 {
    font-size: 1.2rem;
  }

  .how-it-works .free-note {
    padding: 15px;
  }
}

/* LINE診断セクションの追加スタイル */
.type-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.qr-placeholder {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.qr-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 8s infinite;
}

.qr-icon {
  font-size: 8rem;
  color: #06C755;
  opacity: 0.5;
}

/* ビフォーアフターリストの改善 */
.list-icon {
  margin-right: 10px;
}

.before-column .list-icon {
  color: #ff6b6b;
}

.after-column .list-icon {
  color: #51cf66;
}

/* CTA部分の強化 */
.line-option {
  margin: 15px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn i {
  margin-right: 8px;
}

.last-cta .btn {
  padding: 18px 40px;
  font-size: 1.25rem;
}



/* 料金プランセクションの改善 */
.pricing {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 165, 194, 0.1) 100%);
  padding: 80px 0;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.plan-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card.light {
  border-top: 5px solid var(--primary-color);
}

.plan-card.standard {
  border-top: 5px solid var(--secondary-color);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: var(--hover-shadow);
  background: rgba(255, 255, 255, 0.97);
}

.plan-card.advanced {
  border-top: 5px solid var(--accent-color);
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.plan-card.standard:hover {
  transform: scale(1.05) translateY(-10px);
}

.plan-card h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.recommendation {
  background: rgba(248, 165, 194, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
}

.recommendation h4 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  text-align: center;
}

.recommendation ul {
  padding-left: 25px;
}

.recommendation li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 5px;
  list-style-type: none;
}

.recommendation li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

.plan-details {
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 500;
  color: var(--dark-color);
}

.detail-value {
  font-weight: 700;
  color: var(--primary-color);
}

.plan-price {
  background: rgba(197, 163, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: auto;
}

.monthly,
.one-time {
  margin-bottom: 15px;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}

.tax {
  font-size: 0.9rem;
  color: #888;
  margin-left: 5px;
}

.promotion {
  background: rgba(255, 255, 204, 0.5);
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
  border: 1px dashed rgba(255, 193, 7, 0.5);
}

.promotion-label {
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 10px;
}

.promotion-details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #888;
}

.new-price {
  font-weight: 700;
  color: #ff5722;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(248, 165, 194, 0.3);
  z-index: 3;
}

.note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

@media (max-width: 992px) {
  .plan-cards {
    grid-template-columns: minmax(280px, 500px);
    justify-content: center;
  }

  .plan-card.standard {
    transform: scale(1);
    order: -1;
  }

  .plan-card.standard:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .plan-card {
    padding: 25px 20px;
  }

  .plan-card h3 {
    font-size: 1.4rem;
  }

  .recommendation {
    padding: 12px;
  }

  .plan-price {
    padding: 15px;
  }

  .price {
    font-size: 1.3rem;
  }

  .promotion {
    padding: 12px 10px;
  }
}

/* モバイルメニュー修正 */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-logo p {
    margin: 0 auto;
  }
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .logo h1 {
    font-size: 1.5rem;
  }

  .logo h1::after {
    right: -10px;
    width: 8px;
    height: 8px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
  }
}

/* ヒーローセクション - スマホ表示の改善 */
@media (max-width: 768px) {
  .hero {
    padding: 50px 0;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    order: 1;
    text-align: center;
    margin: 0 auto;
  }

  .hero-image {
    order: 2;
    margin: 0 auto;
    max-width: 90%;
  }

  .gradient-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-question {
    font-size: 1.3rem;
  }

  .hero-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .cta-box {
    padding: 20px 15px;
    margin-top: 20px;
  }

  .cta-highlight {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 14px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }

  .hero-content {
    padding: 0 10px;
  }

  .gradient-title {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .hero-question {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .cta-box {
    padding: 15px;
    margin-top: 15px;
  }

  .primary-btn {
    padding: 12px;
    font-size: 1rem;
  }

  .line-cta {
    font-size: 0.9rem;
  }

  .woman-image {
    border-radius: 12px;
  }
}

/* 比較表のスマホ表示調整 - 横スクロール対応 */
@media (max-width: 768px) {
  .comparison-chart {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
  }

  .comparison-chart::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8));
    pointer-events: none;
    z-index: 2;
  }

  .comparison-chart table {
    min-width: 700px;
    margin-bottom: 10px;
  }

  .comparison-chart .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 15px;
  }

  .comparison-chart .table-container::-webkit-scrollbar {
    height: 5px;
  }

  .comparison-chart .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .comparison-chart .table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  .comparison-chart .table-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }

  .comparison-chart .scroll-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .comparison-chart .scroll-hint i {
    animation: scroll-hint 1.5s infinite;
    color: var(--primary-color);
  }

  @keyframes scroll-hint {
    0% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(5px);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media (max-width: 576px) {
  .comparison-chart h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .comparison-chart th,
  .comparison-chart td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .comparison-chart th:first-child,
  .comparison-chart td:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  }

  .check,
  .cross,
  .warning {
    font-size: 1.1rem;
  }
}

/* 比較表のスマホ表示修正 - スワイプ問題解決 */
@media (max-width: 768px) {
  .comparison-chart {
    margin: 40px 0;
    position: relative;
    padding: 30px 0;
    overflow: hidden;
  }

  .comparison-chart::after {
    content: none;
    /* グラデーションを削除 */
  }

  .table-container {
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 15px;
    position: relative;
  }

  .comparison-chart table {
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
  }

  /* スクロールバーのスタイリング */
  .table-container::-webkit-scrollbar {
    height: 5px;
  }

  .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }

  /* 左固定列を強化 */
  .comparison-chart th:first-child,
  .comparison-chart td:first-child {
    position: sticky;
    left: 0;
    background: white;
    z-index: 1;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }

  /* モバイルでのセルパディング調整 */
  .comparison-chart th,
  .comparison-chart td {
    padding: 12px 10px;
    white-space: nowrap;
  }
}

/* 比較表のさらなる改善 */
@media (max-width: 768px) {
  .comparison-chart {
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: white;
  }

  .comparison-chart h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    position: relative;
  }

  .comparison-chart h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }

  .table-container {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .comparison-chart table {
    min-width: 700px;
    width: 100%;
  }

  .comparison-chart th {
    background: #f9f7fd;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    padding: 12px;
    position: relative;
  }

  .comparison-chart th:first-child {
    text-align: left;
    background: linear-gradient(to right, #f9f7fd, white);
  }

  .comparison-chart th:nth-child(2) {
    color: var(--primary-color);
    font-weight: 700;
  }

  .comparison-chart td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .comparison-chart td:first-child {
    text-align: left;
    font-weight: 500;
    background: white;
  }

  .comparison-chart tr:last-child td {
    border-bottom: none;
  }

  .comparison-chart tbody tr:hover {
    background: rgba(248, 165, 194, 0.03);
  }

  .check {
    color: #4CAF50;
    font-size: 1.2rem;
  }

  .cross {
    color: #F44336;
    font-size: 1.2rem;
  }

  .warning {
    color: #FF9800;
    font-size: 1.2rem;
  }

  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
    margin-top: 10px;
    gap: 8px;
    background: rgba(248, 165, 194, 0.05);
    padding: 8px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
  }

  .scroll-hint i {
    color: var(--primary-color);
    animation: scroll-hint 1.5s ease-in-out infinite;
  }
}

@media (max-width: 576px) {
  .comparison-chart {
    padding: 20px 10px;
  }

  .comparison-chart h3 {
    font-size: 1.3rem;
  }

  .comparison-chart th,
  .comparison-chart td {
    padding: 10px 8px;
    font-size: 0.9rem;
  }

  .comparison-chart td:first-child {
    padding-left: 12px;
  }

  .check,
  .cross,
  .warning {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .comparison-chart th {
    font-size: 0.9rem;
    padding: 10px 8px;
  }

  .comparison-chart td {
    font-size: 0.85rem;
    padding: 12px 10px;
  }

  .check,
  .cross,
  .warning {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .comparison-chart h3 {
    font-size: 1.2rem;
  }

  .comparison-chart th,
  .comparison-chart td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  .comparison-chart td:first-child {
    padding-left: 10px;
    font-size: 0.85rem;
  }

  .check,
  .cross,
  .warning {
    font-size: 1rem;
  }

  .scroll-hint {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* スクロール問題の修正 */
@media (max-width: 768px) {
  .comparison-chart {
    overflow: hidden;
    padding: 25px 0;
    margin: 40px 0;
  }

  .table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
  }

  .comparison-chart table {
    min-width: 700px;
    width: 100%;
    margin: 0;
    display: table;
    border-collapse: separate;
    border-spacing: 0;
  }
}

/* インフレーショングラフのスマホ最適化 - 改良版 */
@media (max-width: 768px) {
  .highlight-message {
    font-size: 1.1rem;
    padding: 10px 15px;
    margin: 25px 0;
    background: rgba(248, 165, 194, 0.08);
    border-radius: 30px;
    display: inline-block;
  }

  .inflation-chart {
    padding: 25px 15px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  .inflation-chart::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(248, 165, 194, 0.08) 0%, rgba(248, 165, 194, 0) 70%);
    border-radius: 50%;
    z-index: 0;
  }

  .inflation-chart h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .inflation-chart h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }

  .css-chart {
    width: 100%;
    margin: 25px auto 15px;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .css-chart-container {
    height: 220px;
    margin: 10px 0 30px;
    padding: 0 10px 20px 0;
    border-left: 1.5px solid #ddd;
    border-bottom: 1.5px solid #ddd;
    box-shadow: none;
    background: transparent;
  }

  .chart-bars {
    padding: 0 0 0 20px;
  }

  .chart-bar {
    width: 40px;
    background: linear-gradient(to top, rgba(248, 165, 194, 0.8), rgba(197, 163, 255, 0.6));
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    animation-duration: 1.2s;
  }

  .chart-bar:hover {
    transform: translateY(-3px);
  }

  .chart-bar-value {
    font-size: 0.75rem;
    padding: 3px 6px;
    top: -28px;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
    font-weight: 600;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .chart-bar-label {
    font-size: 0.8rem;
    bottom: -30px;
    font-weight: 500;
  }

  .chart-y-axis {
    left: -65px;
  }

  .chart-y-label {
    font-size: 0.7rem;
    color: #666;
  }

  .chart-y-label::after {
    background-color: #ddd;
  }

  .chart-legend {
    margin-top: 5px;
    justify-content: center;
  }

  .chart-legend-item {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .chart-legend-color {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  }

  .chart-caption {
    font-size: 0.8rem;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    color: #666;
  }
}

@media (max-width: 576px) {
  .highlight-message {
    font-size: 1rem;
    padding: 8px 12px;
    margin: 20px 0;
  }

  .inflation-chart {
    padding: 20px 12px;
    margin-top: 20px;
  }

  .inflation-chart h3 {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .inflation-chart h3::after {
    width: 50px;
    height: 2px;
  }

  .css-chart {
    margin: 20px auto 10px;
  }

  .css-chart-container {
    height: 180px;
    margin: 10px 0 25px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .chart-bars {
    padding: 0 0 0 15px;
  }

  .chart-bar {
    width: 32px;
  }

  .chart-bar-value {
    font-size: 0.65rem;
    top: -24px;
    padding: 2px 5px;
    min-width: 62px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .chart-bar-label {
    font-size: 0.7rem;
    width: 140%;
    bottom: -25px;
  }

  .chart-y-axis {
    left: -54px;
  }

  .chart-y-label {
    font-size: 0.65rem;
  }

  .chart-y-label::after {
    width: 8px;
    right: -8px;
  }

  .chart-legend-item {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .chart-legend-color {
    width: 12px;
    height: 12px;
    margin-right: 5px;
  }

  .chart-caption {
    font-size: 0.7rem;
    margin-top: 10px;
    padding: 0 5px;
  }
}

@media (max-width: 576px) {
  .chart-y-axis {
    display: none;
  }

  .chart-bars {
    padding: 0;
    width: 100%;
  }

  .css-chart-container {
    border-left: none;
    padding-left: 0;
  }
}

/* 固定CTAボタン */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: bold;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.floating-btn i {
  font-size: 1.2em;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .floating-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

/* サービスの安心ポイント */
.service-benefits {
  padding: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.3;
}

.benefit-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* 無料体験レッスンのバナースタイル */
.free-lesson-banner {
  background-color: transparent;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.free-lesson-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lesson-text {
  text-align: center;
  margin-bottom: 15px;
}

.free-lesson-title {
  color: #333;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  white-space: nowrap;
  /* 改行を防ぐ */
}

/* モバイル表示では改行を許可 */
@media (max-width: 768px) {
  .free-lesson-title {
    white-space: normal;
  }
}

.free-lesson-title .highlight {
  color: #e77474;
  font-weight: bold;
  position: relative;
}

.free-lesson-title .accent {
  color: #e77474;
  font-weight: bold;
  font-size: 24px;
  display: inline-block;
  position: relative;
}

.free-lesson-title .banner-accent {
  color: #4a6eb5;
}

.satisfaction-badge {
  position: absolute;
  top: 5px;
  right: 10px;
  background-color: #debc6c;
  color: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 2;
  padding: 3px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.satisfaction-label {
  font-size: 12px;
  margin-bottom: 3px;
}

.satisfaction-value {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.percent {
  font-size: 16px;
  font-weight: 700;
}

.satisfaction-badge .note {
  font-size: 8px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.lesson-illustration {
  max-width: 60%;
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.lesson-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
  .free-lesson-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .lesson-text {
    flex: 1;
    text-align: left;
    padding-right: 100px;
  }

  .free-lesson-title {
    font-size: 24px;
    text-align: left;
  }

  .lesson-illustration {
    max-width: 40%;
    margin: 0;
    flex: 1;
  }

  .satisfaction-badge {
    top: 5px;
    right: 35%;
    width: 90px;
    height: 90px;
  }

  .satisfaction-value {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .free-lesson-banner {
    padding: 10px;
  }

  .free-lesson-title {
    font-size: 18px;
  }

  .free-lesson-title .accent {
    font-size: 20px;
  }

  .satisfaction-badge {
    width: 70px;
    height: 70px;
  }

  .satisfaction-value {
    font-size: 24px;
  }

  .lesson-illustration {
    max-width: 70%;
  }
}

/* プライバシーポリシーのスタイル */
.privacy-policy {
  background-color: var(--light-color);
  padding: 80px 0;
}

.policy-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin: 30px 0;
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 15px;
}

.policy-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 5px;
  list-style-type: disc;
}

.policy-footer {
  margin-top: 40px;
  text-align: right;
  font-weight: 600;
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 60px 0;
  }

  .policy-content {
    padding: 30px 20px;
  }

  .policy-section h3 {
    font-size: 1.2rem;
    padding-left: 12px;
  }
}

@media (max-width: 576px) {
  .privacy-policy {
    padding: 40px 0;
  }

  .policy-content {
    padding: 25px 15px;
    margin: 20px 0;
  }

  .policy-section {
    margin-bottom: 25px;
  }

  .policy-section h3 {
    font-size: 1.1rem;
    padding-left: 10px;
  }
}

/* LINEフローティングバナー */
.floating-line-banner {
  position: fixed;
  right: 20px;
  bottom: 90px;
  /* 既存のCTAボタンの上に表示されるように調整 */
  z-index: 1001;
  display: none;
  /* JavaScriptで表示を制御 */
}

.floating-line-btn {
  display: flex;
  align-items: center;
  background: #06c755;
  /* LINEグリーン */
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.floating-line-btn:hover {
  background: #05b14b;
  /* ホバー時の色 */
}

.floating-line-btn i {
  font-size: 1.4em;
  margin-right: 10px;
}


.service-section {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.service-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.service-section p {
  margin-bottom: 40px;
  color: #666;
}

.calendar-navigation button:disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

/* ======= 予約フォームのデザイン調整 ======= */

/* フォーム全体のコンテナ */
.booking-form-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--border-radius, 16px);
    box-shadow: var(--card-shadow, 0 15px 35px rgba(0,0,0,0.1));
    border-top: 5px solid var(--primary-color, #f8a5c2);
}

/* Contact Form 7のフォーム要素 */
.booking-form-container .wpcf7-form {
    padding-top: 20px;
}

/* 各入力項目の段落(p)タグ */
.booking-form-container .wpcf7-form p {
    margin-bottom: 25px;
}

/* ラベルのスタイル */
.booking-form-container .wpcf7-form label {
    font-weight: 600;
    color: var(--dark-color, #5a5a7a);
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* 入力フィールドの共通スタイル */
.booking-form-container .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.booking-form-container .wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: var(--primary-color, #f8a5c2);
    box-shadow: 0 0 0 3px rgba(248, 165, 194, 0.2);
    background-color: #fff;
}

/* 読み取り専用フィールドのスタイル */
.booking-form-container input[readonly] {
    background-color: #e9ecef;
    color: #495057;
    cursor: not-allowed;
}

/* 注釈テキストのスタイル */
.booking-form-container .wpcf7-form span {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    display: inline-block;
}

/* 送信ボタンのスタイル */
.booking-form-container .wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(45deg, var(--primary-color, #f8a5c2), var(--secondary-color, #c5a3ff));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition, all 0.4s ease);
    box-shadow: var(--button-shadow, 0 10px 25px rgba(248, 165, 194, 0.3));
    margin-top: 20px;
}

.booking-form-container .wpcf7-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
