@charset "UTF-8";

/* ========================================
   基本設定 - 透明感を重視
======================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

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

body {
  color: #333;
  background: #f8f9fd;
  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: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.fixed-cta-btn {
  display: block;
  padding: 15px 25px;
  background: rgba(100, 149, 237, 0.95);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(100, 149, 237, 0.4);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.fixed-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(100, 149, 237, 0.5);
  background: rgba(100, 149, 237, 1);
}

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

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

/* ========================================
   ヘッダー - 透明感のあるグラデーション
======================================== */
.header {
  position: relative;
  padding: 80px 30px 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: #fff;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

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

.emergency-badge {
  display: inline-block;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse-soft 2s infinite;
}

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

.site-title-sub {
  margin: 0 0 20px;
  letter-spacing: 3px;
  font-size: 1.6rem;
  opacity: 0.95;
  font-weight: 300;
}

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

.site-title .subtitle {
  font-size: 3rem;
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.site-description-main {
  font-size: 2.4rem;
  margin: 35px 0;
  font-weight: 400;
}

.highlight-text {
  background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.4) 60%);
  padding: 0 8px;
  font-weight: bold;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

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

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

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

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

/* ========================================
   ボタン - 透明感
======================================== */
.btn {
  display: inline-block;
  padding: 20px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: rgba(100, 149, 237, 0.95);
  color: #fff;
  box-shadow: 0 8px 25px rgba(100, 149, 237, 0.4);
  backdrop-filter: blur(10px);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(100, 149, 237, 0.5);
  background: rgba(100, 149, 237, 1);
}

.btn--light {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: #fff;
}

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

.btn-c {
  margin-top: 35px;
  position: relative;
  z-index: 1;
}

.btn-glow {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(100, 149, 237, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(100, 149, 237, 0.7);
  }
}

/* ========================================
   信頼バッジ
======================================== */
.trust-badges {
  padding: 50px 20px;
  background: #fff;
}

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

.badge-item {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.badge-item i {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 15px;
  display: block;
}

.badge-item p {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.badge-item strong {
  font-size: 2.2rem;
  color: #333;
  display: block;
  margin-top: 5px;
}

/* ========================================
   共通見出し
======================================== */
.heading, .heading-light {
  font-size: 3.8rem;
  margin: 0 0 25px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
}

.heading {
  color: #333;
}

.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;
}

.heading-light {
  color: #fff;
}

.heading-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.section-lead {
  font-size: 1.9rem;
  color: #666;
  margin-bottom: 60px;
  font-weight: 300;
}

/* ========================================
   問題提起セクション
======================================== */
.problem-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.problem-card {
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.problem-icon i {
  font-size: 4.5rem;
  margin-bottom: 20px;
  display: block;
}

.problem-card p {
  font-size: 1.7rem;
  line-height: 1.7;
  margin: 0;
}

.problem-cta {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.solution-message {
  font-size: 2.2rem;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.solution-message i {
  margin-right: 10px;
  font-size: 2.5rem;
  vertical-align: middle;
}

/* ========================================
   ソリューションセクション
======================================== */
.solution-section {
  padding: 100px 20px;
  background: #fff;
}

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

.solution-card {
  position: relative;
  padding: 45px 35px;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.solution-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.solution-icon {
  margin: 30px 0 25px;
}

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

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

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

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

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

.solution-features i {
  color: #667eea;
  font-size: 1.8rem;
  flex-shrink: 0;
}

/* ========================================
   メッセージセクション
======================================== */
.message-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.message-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 60px auto 0;
}

.message-photo {
  position: relative;
}

.message-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.photo-caption {
  margin-top: 20px;
  text-align: center;
}

.lawyer-name {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
}

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

.message-text {
  text-align: left;
}

.message-heading {
  font-size: 3.2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.message-lead {
  font-size: 1.9rem;
  line-height: 2;
  color: #555;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-left: 5px solid #667eea;
  border-radius: 10px;
  margin-bottom: 30px;
}

.message-text p {
  font-size: 1.7rem;
  line-height: 2;
  margin: 25px 0;
  color: #555;
}

.message-cta-text {
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  padding: 25px;
  border-radius: 15px;
  font-weight: 500;
}

.message-cta {
  margin-top: 40px;
  text-align: center;
}

/* ========================================
   ガイドセクション
======================================== */
.guide-section {
  padding: 100px 20px;
  background: #fff;
}

.guide-content {
  max-width: 1000px;
  margin: 60px auto 0;
}

.guide-box {
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  text-align: left;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.guide-box.warning {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-left: 5px solid #ff6b6b;
}

.guide-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-title i {
  font-size: 2.5rem;
  color: #667eea;
}

.guide-box.warning .guide-title i {
  color: #ff6b6b;
}

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

.guide-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.guide-list li {
  padding: 15px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.guide-list li:last-child {
  border-bottom: none;
}

.guide-importance {
  margin-top: 40px;
  padding: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.importance-title {
  font-size: 2.6rem;
  margin-bottom: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.importance-title i {
  font-size: 3rem;
}

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

.importance-item {
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

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

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

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

.reasons-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

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

.reason-card {
  padding: 45px 35px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}

.reason-icon i {
  font-size: 6rem;
  margin-bottom: 25px;
  display: block;
}

.reason-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.reason-description {
  font-size: 1.6rem;
  line-height: 1.9;
}

/* ========================================
   料金セクション
======================================== */
.pricing-section {
  padding: 100px 20px;
  background: #fff;
}

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

.free-consult {
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  padding: 45px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.free-badge {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 25px;
}

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

.free-price {
  margin-bottom: 20px;
}

.price-time {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-right: 15px;
}

.price-amount {
  font-size: 6rem;
  font-weight: bold;
  color: #667eea;
  display: block;
  margin: 15px 0;
}

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

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 60px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-table {
  padding: 40px 35px;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.pricing-table.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.featured-tag {
  position: absolute;
  top: -15px;
  right: 30px;
  padding: 8px 20px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: bold;
}

.table-title {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}

.pricing-table.featured .table-title {
  color: #fff;
}

.table-content {
  margin-bottom: 25px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-table.featured .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-label {
  font-size: 1.7rem;
  font-weight: 500;
}

.price-value {
  font-size: 2.4rem;
  font-weight: bold;
  color: #667eea;
}

.pricing-table.featured .price-value {
  color: #fff;
}

.table-note {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.pricing-table.featured .table-note {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-note {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.pricing-note p {
  font-size: 1.5rem;
  color: #666;
  margin: 12px 0;
}

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

/* ========================================
   フローセクション
======================================== */
.flow-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

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

.flow-item {
  position: relative;
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.flow-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.flow-icon i {
  font-size: 4.5rem;
  color: #667eea;
  margin: 20px 0;
  display: block;
}

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

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

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

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

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

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

.qa-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.qa-toggle {
  display: none;
}

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

.qa-question:hover {
  background: rgba(102, 126, 234, 0.1);
}

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

.qa-arrow {
  transition: transform 0.3s ease;
  color: #667eea;
  font-size: 1.8rem;
}

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

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

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

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

/* ========================================
   アクセス
======================================== */
.access-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

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

.access-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

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

.info-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

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

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

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

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

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

.access-list li {
  padding: 10px 0;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.7;
}

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

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

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.contact-lead {
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.contact-lead i {
  margin-right: 10px;
  font-size: 2.4rem;
  vertical-align: middle;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 50px 45px;
  border-radius: 25px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
  color: #333;
  position: relative;
  z-index: 1;
}

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

.form-heading {
  font-size: 2.4rem;
  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: 600;
  color: #333;
}

.required {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 5px;
  font-size: 1.2rem;
  margin-right: 10px;
  font-weight: bold;
}

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

.form-control, .form-textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

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

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

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

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  background: linear-gradient(135deg, #e8eaf6 0%, #d5daf5 100%);
}

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

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

.form-privacy {
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

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

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

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

.submit-button {
  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 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

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

.submit-note {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #666;
}

/* ========================================
   最終CTA
======================================== */
.final-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

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

.final-cta-title {
  font-size: 4rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.final-cta-text {
  font-size: 2.2rem;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #555;
}

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

.final-cta-note {
  font-size: 1.6rem;
  color: #666;
}

/* ========================================
   プロフィール
======================================== */
.profile-section {
  padding: 100px 20px;
  background: #fff;
}

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

.profile-photo img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.profile-list li {
  padding: 10px 0;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.8;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-list li:last-child {
  border-bottom: none;
}

/* ========================================
   プライバシーポリシー
======================================== */
.privacy-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

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

.privacy-intro {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 50px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
}

.privacy-block {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.privacy-block h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #667eea;
  font-weight: bold;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.privacy-block p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #555;
  margin: 15px 0;
}

.contact-box {
  background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

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

/* ========================================
   ページトップボタン
======================================== */
#page-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#page-top.show {
  opacity: 1;
  visibility: visible;
}

#page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

#page-top a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

#page-top i {
  font-size: 2.2rem;
}

/* ========================================
   フッター
======================================== */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 60px 20px 30px;
}

.footer-content {
  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: 2.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 rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 30px;
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  .header {
    min-height: auto;
    padding: 60px 20px 80px;
  }
  
  .site-title {
    font-size: 3.8rem;
  }
  
  .site-title .subtitle {
    font-size: 2.4rem;
  }
  
  .header-features {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
  
  .message-content {
    grid-template-columns: 1fr;
  }
  
  .access-grid {
    grid-template-columns: 1fr;
  }
  
  .access-map {
    height: 350px;
  }
  
  .profile-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .final-cta-buttons {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  #page-top {
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 3.2rem;
  }
  
  .final-cta-title {
    font-size: 3rem;
  }
  
  .contact-form {
    padding: 35px 25px;
  }
}
