@charset "UTF-8";

/* ========================================
   基本設定
======================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  color: #333;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic Pron", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

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

/* ========================================
   固定CTA
======================================== */
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.fixed-cta-btn {
  display: block;
  padding: 15px 25px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
}

.fixed-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

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

.fixed-cta-btn .small {
  font-size: 1.2rem;
  font-weight: normal;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   ヘッダー
======================================== */
.header {
  padding: 60px 30px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
  background-size: cover;
}

.header-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.emergency-badge {
  display: inline-block;
  padding: 10px 20px;
  background: #ff4757;
  color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: shake 3s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.site-title-sub {
  margin: 0 0 15px;
  letter-spacing: 2px;
  font-size: 1.6rem;
  opacity: 0.9;
}

.site-title {
  margin: 20px 0;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.site-title .subtitle {
  font-size: 2.8rem;
  display: block;
  margin-top: 10px;
}

.site-description-main {
  font-size: 2.2rem;
  margin: 30px 0;
  font-weight: 500;
}

.highlight-text {
  background: linear-gradient(transparent 60%, #ffd93d 60%);
  padding: 0 5px;
  font-weight: bold;
}

.header-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.feature-item i {
  font-size: 2.5rem;
}

.feature-item span {
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.4;
}

.feature-item strong {
  font-size: 1.6rem;
  display: block;
}

.header-note {
  margin-top: 15px;
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ========================================
   ボタン
======================================== */
.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn--orange {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
}

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

.btn--white {
  background: #fff;
  color: #667eea;
}

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

.btn--large {
  padding: 20px 50px;
  font-size: 2rem;
}

.btn-c {
  margin-top: 30px;
}

.btn-pulse {
  animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.8);
  }
}

/* ========================================
   緊急性訴求セクション
======================================== */
.urgency-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.urgency-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.urgency-item {
  background: rgba(255,255,255,0.15);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.urgency-item:hover {
  transform: translateY(-5px);
}

.urgency-item i {
  font-size: 4rem;
  margin-bottom: 15px;
  display: block;
}

.urgency-item p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.urgency-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  color: #333;
}

.urgency-message {
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ========================================
   共通見出し
======================================== */
.heading {
  font-size: 3.5rem;
  margin: 0 0 20px;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.section-description {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 50px;
}

/* ========================================
   問題・解決セクション
======================================== */
.concept {
  padding: 80px 20px;
  background: #f8f9fa;
}

.concept-boxes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-box, .solution-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.box-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
}

.box-title.danger {
  background: #ffe5e5;
  color: #e74c3c;
}

.box-title.success {
  background: #e8f8f5;
  color: #27ae60;
}

.problem-list, .solution-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.problem-list li, .solution-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.6rem;
  display: flex;
  align-items: start;
  gap: 15px;
}

.problem-list li:last-child, .solution-list li:last-child {
  border-bottom: none;
}

.problem-list i {
  color: #e74c3c;
  font-size: 2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.solution-list i {
  color: #27ae60;
  font-size: 2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.arrow-large {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #667eea;
}

/* ========================================
   実績セクション
======================================== */
.stats-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 1.8rem;
  opacity: 0.9;
}

/* ========================================
   自己紹介セクション
======================================== */
.about {
  padding: 80px 20px;
  background: #fff;
}

.lawyer-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lawyer-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #667eea;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.lawyer-name {
  font-size: 2.8rem;
  margin: 0 0 10px 0;
  color: #333;
}

.lawyer-title {
  font-size: 1.6rem;
  color: #666;
  margin: 0;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.lead-text {
  font-size: 1.9rem;
  line-height: 2;
  color: #2c3e50;
  background: #f8f9fa;
  padding: 30px;
  border-left: 5px solid #667eea;
  border-radius: 10px;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.7rem;
  line-height: 2;
  margin: 20px 0;
}

.cta-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
  text-align: center;
}

.cta-text {
  font-size: 2rem;
  margin-bottom: 25px;
}

/* ========================================
   サービス内容
======================================== */
.services {
  padding: 80px 20px;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon i {
  font-size: 3.5rem;
  color: #fff;
}

.service-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.service-description {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 10px 0;
  font-size: 1.5rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features i {
  color: #27ae60;
  font-size: 1.6rem;
}

/* ========================================
   選ばれる理由
======================================== */
.strengths {
  padding: 80px 20px;
  background: #fff;
}

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

.strength-card {
  position: relative;
  padding: 40px 30px;
  background: #f8f9fa;
  border-radius: 20px;
  transition: transform 0.3s ease;
  text-align: left;
}

.strength-card:hover {
  transform: translateY(-5px);
}

.strength-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.strength-icon {
  margin: 30px 0 20px 0;
}

.strength-icon i {
  font-size: 5rem;
  color: #667eea;
}

.strength-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}

.strength-description {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
}

/* ========================================
   料金セクション
======================================== */
.pricing {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.pricing .heading {
  color: #fff;
}

.pricing .heading::after {
  background: #fff;
}

.pricing-highlight {
  max-width: 600px;
  margin: 50px auto;
}

.free-consultation {
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  color: #333;
}

.free-badge {
  display: inline-block;
  padding: 10px 25px;
  background: #ff4757;
  color: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.free-badge i {
  margin-right: 8px;
}

.free-price {
  font-size: 2rem;
  margin-bottom: 15px;
}

.price-large {
  font-size: 3rem;
  font-weight: bold;
  margin-right: 10px;
}

.price-main {
  font-size: 6rem;
  font-weight: bold;
  color: #ff4757;
  display: block;
  margin: 10px 0;
}

.free-note {
  font-size: 1.4rem;
  color: #666;
}

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

.pricing-table {
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 20px;
  color: #333;
}

.pricing-table-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #667eea;
  font-weight: bold;
  text-align: center;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.price-table th, .price-table td {
  padding: 15px;
  border-bottom: 2px solid #f0f0f0;
  text-align: left;
}

.price-table th {
  font-weight: bold;
  color: #555;
  width: 50%;
}

.price-table td {
  font-weight: bold;
  color: #667eea;
  font-size: 1.8rem;
}

.pricing-note {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
}

.pricing-footer {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 15px;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-footer p {
  margin: 10px 0;
  font-size: 1.5rem;
}

.pricing-footer i {
  color: #667eea;
  margin-right: 10px;
}

/* ========================================
   フローセクション
======================================== */
.flow {
  padding: 80px 20px;
  background: #f8f9fa;
}

.flow-steps {
  max-width: 800px;
  margin: 60px auto 0;
}

.flow-step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.flow-step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: bold;
}

.flow-step-icon {
  margin: 20px 0;
  text-align: center;
}

.flow-step-icon i {
  font-size: 5rem;
  color: #667eea;
}

.flow-step-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.flow-step-description {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  text-align: center;
}

.flow-arrow {
  text-align: center;
  margin: 20px 0;
}

.flow-arrow i {
  font-size: 3rem;
  color: #667eea;
}

/* ========================================
   Q&A
======================================== */
.qa {
  padding: 80px 20px;
  background: #fff;
}

.qa-accordion {
  max-width: 900px;
  margin: 60px auto 0;
}

.qa-item {
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

.qa-checkbox {
  display: none;
}

.qa-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  user-select: none;
}

.qa-question:hover {
  background: #e8e8e8;
}

.qa-question i.fa-question-circle {
  color: #667eea;
  margin-right: 15px;
  font-size: 2.2rem;
}

.qa-icon {
  transition: transform 0.3s ease;
  color: #999;
}

.qa-checkbox:checked + .qa-question .qa-icon {
  transform: rotate(180deg);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.qa-checkbox:checked ~ .qa-answer {
  max-height: 500px;
}

.qa-answer p {
  padding: 30px;
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
  background: #fff;
}

/* ========================================
   アクセス
======================================== */
.access {
  padding: 80px 20px;
  background: #f8f9fa;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.access-map iframe {
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  text-align: left;
}

.info-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #667eea;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.phone-link {
  color: #667eea;
  text-decoration: none;
  font-weight: bold;
  font-size: 2.2rem;
}

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

.access-list {
  list-style: none;
  padding: 0;
}

.access-list li {
  padding: 8px 0;
  font-size: 1.5rem;
  color: #555;
}

.access-list strong {
  color: #667eea;
}

/* ========================================
   お問い合わせフォーム
======================================== */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.contact .heading {
  color: #fff;
}

.contact .heading::after {
  background: #fff;
}

.contact-lead {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 50px;
}

.contact-lead strong {
  background: #fff;
  color: #667eea;
  padding: 5px 15px;
  border-radius: 5px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.2);
  color: #333;
}

.form-section {
  margin-bottom: 50px;
}

.form-section-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #667eea;
  color: #667eea;
  font-weight: bold;
}

.form-group {
  margin-bottom: 25px;
  text-align: left;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

.required-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #ff4757;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

.optional-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #95a5a6;
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.checkbox-label:hover {
  background: #e8e8e8;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-text {
  font-size: 1.6rem;
  color: #333;
}

.form-privacy {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.form-privacy p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.privacy-link {
  color: #667eea;
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.submit-btn {
  padding: 20px 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-btn i {
  margin-right: 10px;
}

.form-note {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #666;
  line-height: 1.8;
}

/* ========================================
   最終CTA
======================================== */
.final-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}

.final-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.final-cta-text {
  font-size: 2.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.final-cta-note {
  font-size: 1.6rem;
  opacity: 0.9;
}

/* ========================================
   プロフィール
======================================== */
.profile {
  padding: 80px 20px;
  background: #f8f9fa;
}

.profile-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  margin-top: 60px;
  text-align: left;
}

.profile-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.profile-name {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.profile-affiliation {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 30px;
}

.profile-section {
  margin-bottom: 40px;
}

.profile-section h4 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-list {
  list-style: none;
  padding: 0;
}

.profile-list li {
  padding: 8px 0;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
}

/* ========================================
   プライバシーポリシー
======================================== */
.privacy {
  padding: 80px 20px;
  background: #fff;
}

.privacy-content {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: left;
}

.privacy-intro {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 40px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.privacy-section p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

.contact-info-box p {
  margin: 8px 0;
}

/* ========================================
   ページトップボタン
======================================== */
#page_top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}

#page_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

#page_top a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

#page_top i {
  font-size: 2rem;
}

/* ========================================
   フッター
======================================== */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 50px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  text-align: left;
}

.footer-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-info p {
  margin: 8px 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer-links a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #667eea;
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #95a5a6;
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 30px;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .fixed-cta {
    bottom: 10px;
    right: 10px;
  }
  
  .fixed-cta-btn {
    padding: 12px 20px;
    font-size: 1.3rem;
  }
  
  .header {
    padding: 40px 20px 60px;
  }
  
  .site-title {
    font-size: 3.2rem;
  }
  
  .site-title .subtitle {
    font-size: 2rem;
  }
  
  .header-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    font-size: 1.6rem;
    padding: 15px 30px;
  }
  
  .btn--large {
    font-size: 1.8rem;
    padding: 18px 35px;
  }
  
  .heading {
    font-size: 2.8rem;
  }
  
  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .urgency-cta {
    padding: 30px 20px;
  }
  
  .concept-boxes {
    grid-template-columns: 1fr;
  }
  
  .arrow-large {
    transform: rotate(90deg);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .strengths-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-tables {
    grid-template-columns: 1fr;
  }
  
  .access-content {
    grid-template-columns: 1fr;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .profile-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  #page_top {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 3.5rem;
  }
  
  .free-price .price-main {
    font-size: 4.5rem;
  }
  
  .final-cta-title {
    font-size: 2.8rem;
  }
  
  .final-cta-text {
    font-size: 1.8rem;
  }
}
