/* リセットCSS含む基本設定 */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  color: #333;
  line-height: 1.6;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}


body, div, span, strong, dl, dt, dd, ul, ol, li, pre, form, p, a, blockquote, th, td, h1, h2, h3, h4, h5, h6,button {
  font-family: 游明朝,"Yu Mincho",YuMincho,"Noto Serif JP","Sawarabi Mincho", "Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif  !important;
}

.lp-form-input input[type="text"], .lp-form-input input[type="email"], .lp-form-input input[type="tel"], .lp-form-input select, .lp-form-input textarea {
  font-family: 游明朝,"Yu Mincho",YuMincho,"Noto Serif JP","Sawarabi Mincho","Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif  !important;
}

* {
  box-sizing: border-box;
}

/* カラー定義 */
:root {
  --lp-primary: #1b7481; /* ティールブルー */
  --lp-primary-dark: #145863;
  --lp-secondary: #e6f2f3;
  --lp-text: #333333;
}

/* =========================================
   Utility Classes (改行制御など)
   ========================================= */
.pc-only { display: inline; }
.sp-only { display: none; }
/* インラインブロックで文節改行を防ぐ */
.ib { display: inline-block; }

/* =========================================
   Header & Nav
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  height: 80px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  z-index: 1001; /* ハンバーガー展開時も前面に出すなら調整 */
}

.header-logo-icon img {
  height: 44px;
  width: auto;
  display: block;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-main {
  /* font-family: "Noto Serif JP", serif; */
  font-size: 1.6rem;
  color: var(--lp-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.logo-sub {
  /* font-family: "Noto Serif JP", serif; */
  font-size: 1.22rem;
  color: var(--lp-primary);
  line-height: 1;
  font-weight: 700;
}

/* PCナビゲーション */
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  cursor: pointer;
}

.header-nav a:hover {
  color: var(--lp-primary);
}

.header-cta {
  background: var(--lp-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
}

.header-cta:hover {
  background: var(--lp-primary-dark);
}

/* ハンバーガーボタン (PC非表示) */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 2000;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--lp-primary);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-btn span:nth-child(3) { bottom: 0; }

/* ハンバーガー Active時 */
.hamburger-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* =========================================
   Main Content Layout
   ========================================= */
.lp-wrapper {
  margin-top: 80px;
}

.lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-section {
  padding: 100px 0;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.lp-section-header .en {
  display: block;
  /* font-family: "Noto Serif JP", serif; */
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.lp-section-header .ja {
  /* font-family: "Noto Serif JP", serif; */
  font-size: 2.2rem;
  color: #333;
  font-weight: normal;
  margin: 0;
  line-height: 1.3;
}

/* ボタン共通 */
.lp-btn {
  display: inline-block;
  padding: 14px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.05em;
}

.lp-btn-main {
  background-color: var(--lp-primary);
  color: #fff;
  font-size: 1.1rem;
  border: 2px solid var(--lp-primary);
  margin-top: 20px;
}

.lp-btn-main:hover {
  background-color: #fff;
  color: var(--lp-primary);
}


/* =========================================
   Sections
   ========================================= */

/* Hero */
.lp-hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  /* background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
  background: url(../images/fv.jpeg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .lp-hero {
    background-position: 32% 0;
  }
}

.lp-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 50, 60, 0.45);
  z-index: 1;
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 95%;
}

.lp-hero-catch {
  font-size: 1.1rem;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .lp-hero-catch {
    font-size: 3.6vw;
  }
}

.lp-hero-title {
  /* font-family: "Noto Serif JP", serif; */
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 40px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.lp-hero-sub {
  font-size: 1.2rem;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.95);
  color: var(--lp-primary);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: bold;
  line-height: 1.8;
}

/* Concept */
.lp-concept {
  background-color: #fff;
}

.lp-concept-body {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.lp-concept-text {
  flex: 1;
}

.lp-concept-text h3 {
  /* font-family: "Noto Serif JP", serif; */
  color: var(--lp-primary);
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.lp-concept-text p {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1rem;
}

.lp-concept-img {
  flex: 1;
  aspect-ratio: 1/0.9;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  background: url(../images/sample1.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% top;
}

@media (max-width: 768px) {
  .lp-concept-img {
    width: 100%;
    aspect-ratio: 1/0.6;
  }

  .lp-concept-text {
    margin-top: 3%;
  }
}

/* .lp-concept-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
} */



/* =========================================
   Features (左右交互レイアウト)
   ========================================= */
.lp-features {
  background-color: var(--lp-secondary);
}

.lp-features-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* カード共通設定 */
.lp-feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex; /* 横並び */
  align-items: stretch; /* ★変更：高さを揃える */
  overflow: hidden;
}

/* 偶数番目のカードは左右逆にする */
.lp-feature-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* --- 画像・アイコンエリア --- */
.lp-feature-img {
  width: 45%;
  background-color: #eefcfd;
  /* min-height: 300px; ←★削除：固定高さを廃止 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px; /* ★追加：PCでも最低限の余白を確保 */
}

.lp-feature-img1 {
  background: url(../images/sample2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.lp-feature-img2 {
  background: url(../images/sample4.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.lp-feature-img3 {
  background: url(../images/sample3.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.lp-feature-img4 {
  background: url(../images/sample5.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

/* アイコン装飾 */
.lp-feature-icon {
  width: 100px;
  height: 100px;
  background: var(--lp-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0; /* 潰れ防止 */
}

/* --- テキストエリア --- */
.lp-feature-text {
  width: 55%;
  padding: 50px 40px; /* ★変更：テキスト上下の余白を調整 */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center; /* テキストを垂直中央寄せ */
}

.lp-feature-text h3 {
  color: var(--lp-primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding-bottom: 15px;
}

/* タイトルの下に装飾線 */
.lp-feature-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #d8aa5a;
}

.lp-feature-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* =========================================
   SP Responsive (Max Width 768px)
   ========================================= */
@media (max-width: 768px) {
  .lp-features-grid {
    gap: 30px;
  }

  .lp-feature-card {
    flex-direction: column; /* スマホは常に縦並び */
    height: auto;
  }
  
  .lp-feature-card:nth-child(even) {
    flex-direction: column;
  }

  /* 画像エリア（スマホ用調整） */
  .lp-feature-img {
    width: 100%;
    /* min-height: 200px; ←★削除 */
    /* padding: 50px 0; */
    aspect-ratio: 1/0.5;
  }

  .lp-feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  /* テキストエリア */
  .lp-feature-text {
    width: 100%;
    padding: 20px 5px;
  }

  .lp-feature-text h3 {
    font-size: 1.3rem;
  }
  
  .lp-feature-text p {
    font-size: 0.9rem;
  }
  
  .pc-only { display: none; }
}




/* Persona */
.lp-persona {
  background: #fff;
}

.lp-persona-list {
  background: #fafafa;
  border: 2px solid var(--lp-primary);
  padding: 50px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.lp-persona-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.lp-persona-list li {
  font-size: 1rem;
  margin-bottom: 18px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 12px;
}

.lp-persona-list li i {
  color: var(--lp-primary);
  margin-right: 12px;
}

.lp-persona-message {
  text-align: center;
  font-weight: bold;
  color: var(--lp-primary);
  font-size: 1.4rem;
  margin: 0;
  /* font-family: "Noto Serif JP", serif; */
}

@media (max-width: 768px) {
  .lp-persona-message {
    font-size: 4.7vw;
  }
}

/* Requirements (Table) */
.lp-requirements {
  background-color: var(--lp-secondary);
}

.lp-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.lp-table th, .lp-table td {
  padding: 25px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.lp-table th {
  background: #f4fcfd;
  color: var(--lp-primary);
  width: 25%;
  font-weight: bold;
  white-space: nowrap;
  border-right: 1px solid #eee;
}

.lp-text-small {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  display: block;
  margin-top: 5px;
}

.lp-text-note {
  font-size: 0.95rem;
  display: block;
  margin-top: 5px;
}

.highlight {
  color: #d85a5a;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Flow */
.lp-flow {
  background: #fff;
}

.lp-flow-steps {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 40px;
}

.lp-flow-item {
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.lp-flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #eee;
  z-index: 0;
}

.lp-flow-circle {
  width: 80px;
  height: 80px;
  border: 2px solid var(--lp-primary);
  color: var(--lp-primary);
  /* font-family: "Noto Serif JP", serif; */
  font-size: 2rem;
  line-height: 76px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.lp-flow-item:hover .lp-flow-circle {
  background-color: var(--lp-primary);
  color: #fff;
  transform: scale(1.1);
}

.lp-flow-item h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.lp-flow-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.lp-flow-item p span {
  display: block;
  font-size: 70%;
  margin-top: 15px;
}

.lp-flow-note {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 20px;
}

/* CTA Footer */
.lp-cta {
  background-color: var(--lp-primary);
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.lp-cta h2 {
  /* font-family: "Noto Serif JP", serif; */
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.lp-cta p {
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.lp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.lp-btn-white {
  background: #fff;
  color: var(--lp-primary);
  border: 2px solid #fff;
  font-size: 1.1rem;
  min-width: 280px;
}

.lp-btn-white:hover {
  background: transparent;
  color: #fff;
}

.lp-tel {
  font-size: 1.6rem;
  font-weight: bold;
  /* font-family: "Noto Serif JP", serif; */
  letter-spacing: 0.05em;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: #f9fcfc; /* ほんのり色付け */
  border-top: 1px solid #e6f2f3;
  padding-top: 60px;
  margin-top: 0;
  text-align: center; /* 全体を中央揃え */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  /* gap: 30px; */
}

/* フッターロゴ画像 */
.footer-logo-wrap {
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 60px; /* 少し大きめにして存在感を出す */
  width: auto;
  display: block;
}

/* 会社情報・連絡先 */
.footer-address {
  color: #333;
}

.company-name {
  /* font-family: "Noto Serif JP", serif; */
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 0;
  color: var(--lp-primary);
  letter-spacing: 0.05em;
}

.contact-info {
  font-size: 1rem;
  line-height: 2;
  color: #555;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  /* font-weight: bold; */
  /* font-size: 1.1rem;
  transition: color 0.3s; */
}

.contact-info a:hover {
  color: var(--lp-primary);
  text-decoration: underline;
}

.reception-time {
  font-size: 0.9rem;
  color: #888;
}

/* コピーライト */
.footer-copy {
  background: var(--lp-primary);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* SP Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 50px;
  }
  
  .footer-logo-img {
    height: 50px; /* スマホでは少し小さく */
  }

  .company-name {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .contact-info {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}


/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

/* =========================================
   SP Responsive (Max Width 768px)
   ========================================= */
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
  
  /* Header & Nav (Hamburger) */
  .hamburger-btn { display: block; }
  
  .header-nav {
    position: fixed;
    top: 80px; /* Header Height */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1500;
  }
  
  .header-nav.is-active {
    transform: translateX(0);
  }
  
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }
  
  .header-nav a {
    font-size: 1.2rem;
  }

  /* Logo adjustment */
  .header-logo-icon img { height: 32px; }
  .logo-main { font-size: 1.2rem; }
  .logo-sub { font-size: 3.9vw; }
  
  /* 全体の余白 */
  .lp-section { padding: 60px 0; }
  .lp-section-header { margin-bottom: 30px; }
  .lp-section-header .ja { font-size: 1.6rem; }

  /* Hero */
  .lp-hero { height: auto; padding: 120px 0 80px; }
  .lp-hero-title { font-size: 7vw; line-height: 1.6; }
  .lp-hero-sub { font-size: 0.95rem; width: 100%; padding: 10px; }
  .lp-hero-content { max-width: 100%; }

  /* Concept */
  .lp-concept-body { flex-direction: column-reverse; gap: 30px; }
  .lp-concept-text h3 { font-size: 6vw;}
  
  /* Features */
  .lp-features-grid { flex-direction: column; gap: 15px; }
  .lp-feature-card {
    /* SPでは横並びカード風にして高さを節約しつつ見やすく */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }
  .lp-feature-icon {
    width: 60px; height: 60px; font-size: 1.5rem; margin-bottom: 15px;
  }
  .lp-feature-card h3 { font-size: 1.1rem; }
  
  /* Persona */
  .lp-persona-list { padding: 30px 20px; }
  .lp-persona-list li { font-size: 1rem; }

  /* Table */
  .lp-table th, .lp-table td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .lp-table th { background: #eef8f9; padding: 15px; }
  .lp-table td { padding: 20px 15px; }
  
  /* Flow */
  .lp-flow-steps { flex-direction: column; gap: 30px; }
  .lp-flow-item { padding: 0; }
  .lp-flow-item:not(:last-child)::after { display: none; }
  
  /* CTA */
  .lp-cta { padding: 60px 0; }
  .lp-cta h2 { font-size: 5.5vw; line-height: 1.6; }
  .lp-cta p { font-size: 3.6vw;}
  .lp-cta-buttons { flex-direction: column; gap: 15px; }
  .lp-btn-white { min-width: 100%; }
  .lp-tel { font-size: 1.3rem; }
}




/* =========================================
   CTA内フォーム設定
   ========================================= */

/* フォーム全体のコンテナ（白背景のボックス） */
.lp-cta-form {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto 50px; /* 上下の余白 */
  text-align: left; /* フォーム内の文字は左揃え */
  color: #333; /* 文字色を黒に戻す */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.lp-form-item {
  margin-bottom: 30px;
}

/* ラベル */
.lp-form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* 必須・任意バッジ */
.required, .any {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.required {
  background: #d85a5a;
  color: #fff;
}

.any {
  background: #999;
  color: #fff;
}

/* 入力エリア共通 */
.lp-form-input input[type="text"],
.lp-form-input input[type="email"],
.lp-form-input input[type="tel"],
.lp-form-input select,
.lp-form-input textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fdfdfd;
  box-sizing: border-box;
}

.lp-form-input input:focus,
.lp-form-input select:focus,
.lp-form-input textarea:focus {
  border-color: var(--lp-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(27, 116, 129, 0.2);
}

/* ラジオボタン */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 5px;
}

.radio-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.radio-group input[type="radio"] {
  accent-color: var(--lp-primary);
  width: 18px;
  height: 18px;
  margin: 0;
}

/* 送信エリア */
.lp-form-submit-area {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.privacy-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333; /* 白文字背景のCTA内でも黒文字にする */
}

.privacy-text a {
  color: var(--lp-primary);
  text-decoration: underline;
}

.lp-submit-btn {
  width: 100%;
  max-width: 300px;
  padding: 15px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  background-color: var(--lp-primary);
  color: #fff;
  transition: opacity 0.3s;
}

.lp-submit-btn:hover {
  background-color: var(--lp-primary); /* ホバー時の色は透明にせず濃いまま維持 */
  opacity: 0.8;
  color: #fff;
}

.lp-tel {
  margin-bottom: 0 !important;
}

/* SP用調整 */
@media (max-width: 768px) {
  .lp-cta-form {
    padding: 30px 20px;
    margin-top: 30px;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
}