/* おはな造園 簡易版LP スタイルシート */

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 画像最適化 */
img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  decoding: async;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}

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

/* ナビゲーション */
.nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-toggle {
  display: none;
}

.nav-mobile-menu {
  display: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
  padding: 8px 12px;
  border-radius: 5px;
}

.nav-link:hover {
  color: #2d5016;
  background: rgba(45, 80, 22, 0.1);
}

.phone-btn {
  background: #2d5016;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.phone-btn:hover {
  background: #1a3009;
}

/* LINEボタン */
.line-btn {
  background: #00B900;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  margin-left: 10px;
}

.line-btn:hover {
  background: #009A00;
}

/* ヒーローセクションのCTAボタン */
.hero-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btn.line-style {
  background: #00B900;
  box-shadow: 0 4px 15px rgba(0, 185, 0, 0.3);
}

.cta-btn.line-style:hover {
  background: #009A00;
  box-shadow: 0 6px 20px rgba(0, 185, 0, 0.4);
}

/* フォーム下のLINEリンク */
.contact-options {
  text-align: center;
  margin-top: 20px;
}

.line-note {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}

.line-inline {
  color: #00B900;
  text-decoration: none;
  font-weight: bold;
}

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

/* サンクスページのLINEボタン */
.urgent-contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

.line-large {
  background: #00B900;
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
  display: inline-block;
}

.line-large:hover {
  background: #009A00;
  transform: translateY(-2px);
}

/* ファーストビュー */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 50px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.desktop-br {
  display: inline;
}

.mobile-br {
  display: none;
}

.hero-subtitle {
  font-size: 48px !important;
  margin-bottom: 40px;
  line-height: 1.3 !important;
  color: #32cd32 !important;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6) !important;
  font-weight: bold !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic !important;
}

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

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

.hero-selling-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 15px;
  border-radius: 12px;
  min-width: 110px;
  transition: all 0.3s ease;
}

.hero-point:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.hero-point-icon {
  font-size: 30px;
  margin-bottom: 5px;
}

.hero-point-text {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-btn {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 実績セクション */
.stats {
  background: #2d5016;
  color: white;
  padding: 50px 0;
}

.stats .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #ff6b35;
}

.stat-text {
  font-size: 18px;
  margin-top: 10px;
}

/* サービス */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

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

.service-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  image-rendering: optimizeQuality;
  will-change: transform;
}

.service-item h3 {
  font-size: 24px;
  color: #2d5016;
  margin-bottom: 10px;
}

.price {
  font-size: 24px;
  color: #ff6b35;
  font-weight: bold;
  margin: 10px 0;
}

/* ビフォーアフター */
.before-after {
  padding: 80px 0;
}

.before-after h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

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

.case-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.case-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.case-item p {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* お客様の声 */
.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

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

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
}


.testimonial p {
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial cite {
  font-weight: bold;
  color: #2d5016;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-item h3 {
  background: #2d5016;
  color: white;
  padding: 20px;
  margin: 0;
  font-size: 18px;
}

.faq-item p {
  padding: 20px;
  margin: 0;
  background: #f8f9fa;
}

/* お問い合わせフォーム */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
  color: white;
}

.form-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  margin-top: 20px;
  color: #ccc;
  font-size: 14px;
}

/* TOPに戻るボタン */
.back-to-top {
  text-align: center;
  padding: 40px 0;
  background: #f8f9fa;
}

.back-to-top-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.back-to-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
  background: linear-gradient(135deg, #1a3009 0%, #2d5016 100%);
}

/* フッター */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  text-align: center;
  margin-bottom: 30px;
}

.footer-info h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 24px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer p {
  margin-bottom: 10px;
  color: white;
  font-size: 16px;
}

.footer a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  color: #f7931e;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}

/* ファーストビュー追加スタイル */
.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* なぜ選ばれるのか */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .why-choose h2 {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.4;
    padding: 0 10px;
  }
}

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

.reason-item {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.reason-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.reason-item h3 {
  font-size: 20px;
  color: #2d5016;
  margin-bottom: 15px;
}

.reason-item p {
  color: #666;
  line-height: 1.6;
}

/* サービス拡張スタイル */
.service-item.featured {
  border: 3px solid #ff6b35;
  position: relative;
}

.service-item.featured::before {
  content: '人気No.1';
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.service-desc {
  color: #666;
  margin: 15px 0;
  line-height: 1.5;
}

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

.service-features li {
  padding: 5px 0;
  color: #2d5016;
  font-size: 14px;
}

/* 料金表 */
.pricing {
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 50px;
}

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

.pricing-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-item h3 {
  color: #2d5016;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.price-list {
  space-y: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.price-row:last-child {
  border-bottom: none;
}

.price-service {
  font-weight: 500;
  color: #333;
}

.price-cost {
  font-weight: bold;
  color: #ff6b35;
}

.pricing-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}

/* 施工事例拡張 */
.case-content {
  padding: 20px;
}

.case-content h3 {
  color: #2d5016;
  margin-bottom: 10px;
  font-size: 18px;
}

.case-detail {
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 10px;
}

.case-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* お客様の声拡張 */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-service {
  background: #2d5016;
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: bold;
}

.testimonial-location {
  color: #666;
  font-size: 14px;
}

.testimonial-rating {
  color: #ff6b35;
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}

/* FAQ拡張 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

/* フォーム拡張 */
.form-intro {
  text-align: center;
  color: #ccc;
  margin-bottom: 30px;
  font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* ナビゲーション */
  .nav-container {
    padding: 8px 15px;
  }
  
  .logo {
    height: 35px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
  }
  
  .nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }
  
  .nav-mobile-menu.active {
    display: block;
  }
  
  .nav-mobile-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
  }
  
  .nav-mobile-link:hover {
    background-color: #f8f9fa;
  }
  
  .phone-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .line-btn {
    padding: 8px 15px;
    font-size: 14px;
    margin-left: 8px;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cta-btn.line-style {
    padding: 16px 32px;
    font-size: 18px;
  }
  
  .line-mobile {
    background: #00B900 !important;
    color: white !important;
  }
  
  .line-mobile:hover {
    background: #009A00 !important;
  }
  
  .urgent-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .line-large {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  /* ファーストビュー */
  .hero {
    min-height: 60vh;
    padding: 60px 0 40px;
  }
  
  .hero-content {
    padding: 0 15px;
    max-width: 90%;
    padding-top: 40px;
  }
  
  .hero h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    white-space: normal;
  }
  
  .desktop-br {
    display: none;
  }
  
  .mobile-br {
    display: inline;
  }
  
  .hero-subtitle {
    font-size: 32px !important;
    margin-bottom: 30px;
    line-height: 1.2 !important;
    font-weight: bold !important;
    color: #32cd32 !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6) !important;
    letter-spacing: -0.8px !important;
    white-space: nowrap !important;
    font-style: italic !important;
  }
  
  .cta-btn {
    padding: 16px 32px;
    font-size: 18px;
    margin: 50px 0 60px;
    z-index: 10;
    position: relative;
  }
  
  .hero-selling-points {
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-point {
    padding: 12px 8px;
    min-width: 85px;
    flex: 0 1 auto;
    max-width: 100px;
  }
  
  .hero-point-icon {
    font-size: 24px;
  }
  
  .hero-point-text {
    font-size: 11px;
  }
  
  /* その他のセクション */
  .stats .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .service-grid,
  .case-grid,
  .testimonial-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    grid-template-columns: 1fr;
  }
  
  .reason-item {
    padding: 30px 20px;
  }
  
  .service-features {
    text-align: center;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  /* さらに小さい画面用 */
  .hero {
    min-height: 50vh;
    padding: 50px 0 30px;
  }
  
  .hero h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
    white-space: normal;
    line-height: 1.3;
  }
  
  .mobile-br {
    display: inline;
  }
  
  .hero-subtitle {
    font-size: 28px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    color: #32cd32 !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6) !important;
    letter-spacing: -1px !important;
    font-style: italic !important;
  }
  
  .cta-btn {
    padding: 14px 28px;
    font-size: 16px;
    margin: 45px 0 55px;
    z-index: 10;
    position: relative;
  }
  
  .hero-selling-points {
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-point {
    padding: 10px 6px;
    min-width: 75px;
    flex: 0 1 auto;
    max-width: 90px;
  }
  
  .hero-point-icon {
    font-size: 22px;
  }
  
  .hero-point-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .cta-btn {
    font-size: 18px;
    padding: 15px 30px;
    margin: 40px 0 50px;
    z-index: 10;
    position: relative;
  }
  
  .service-item,
  .testimonial {
    padding: 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* サンクスページ */
.thanks-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
}

.thanks-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
  font-size: 80px;
  margin-bottom: 30px;
  color: #2d5016;
}

.thanks-content h1 {
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 40px;
  font-weight: bold;
}

.thanks-message {
  text-align: left;
  margin: 40px 0;
}

.thanks-message > p {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.next-steps {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.next-steps h3 {
  color: #2d5016;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.step-number {
  width: 40px;
  height: 40px;
  background: #2d5016;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h4 {
  color: #2d5016;
  margin-bottom: 5px;
  font-size: 16px;
}

.step-content p {
  color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.urgent-contact {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #2d5016 0%, #1a3009 100%);
  border-radius: 15px;
  color: white;
  text-align: center;
}

.urgent-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
}

.phone-large {
  margin: 20px 0;
}

.phone-large a {
  color: #ff6b35;
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  padding: 15px 30px;
  background: white;
  border-radius: 50px;
  transition: transform 0.3s;
}

.phone-large a:hover {
  transform: scale(1.05);
}

.hours {
  color: #ccc;
  margin: 10px 0;
  font-size: 16px;
}

.emergency {
  color: #ff6b35;
  font-weight: bold;
  margin-top: 15px;
  font-size: 16px;
}

.service-reminder {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.service-reminder h3 {
  color: #2d5016;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.feature-item h4 {
  color: #2d5016;
  margin-bottom: 10px;
  font-size: 16px;
}

.feature-item p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.back-link {
  margin-top: 40px;
  text-align: center;
}

.btn-back {
  background: linear-gradient(45deg, #2d5016, #1a3009);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-back:hover {
  transform: translateY(-2px);
}

/* 他社との料金比較 */
.price-comparison {
  padding: 80px 0;
  background: #f8f9fa;
}

.price-comparison h2 {
  text-align: center;
  font-size: 36px;
  color: #2d5016;
  margin-bottom: 20px;
}

.comparison-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  background: #2d5016;
  color: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-service,
.header-competitor,
.header-ours {
  font-weight: bold;
  font-size: 16px;
}

.header-ours {
  background: #ff6b35;
  color: white;
}

.service-name {
  text-align: left;
  justify-content: flex-start;
  gap: 15px;
}

.service-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.service-detail strong {
  display: block;
  color: #2d5016;
  font-size: 16px;
  margin-bottom: 4px;
}

.service-detail small {
  color: #666;
  font-size: 13px;
}

.competitor-price {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.our-price {
  background: #fff5f0;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid #ff6b35;
}

.price-highlight {
  color: #ff6b35;
  font-size: 20px;
  font-weight: bold;
}

.savings {
  background: #ff6b35;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.comparison-features {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-features h3 {
  text-align: center;
  color: #2d5016;
  font-size: 24px;
  margin-bottom: 30px;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.feature-icon {
  color: #2d5016;
  font-size: 18px;
  flex-shrink: 0;
}

/* サンクスページのレスポンシブ対応 */
@media (max-width: 768px) {
  .thanks-content {
    padding: 40px 20px;
    margin: 0 15px;
  }
  
  .thanks-icon {
    font-size: 60px;
  }
  
  .thanks-content h1 {
    font-size: 28px;
  }
  
  .phone-large a {
    font-size: 24px;
    padding: 12px 24px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .next-steps,
  .urgent-contact,
  .service-reminder {
    padding: 20px;
  }
  
  /* 料金比較テーブルのレスポンシブ */
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .comparison-cell {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .service-name {
    background: #f8f9fa;
    font-weight: bold;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
}