

:root {
  --emerald-deep: #0d4d2b;
  --emerald-rich: #1a8f4a;
  --emerald-vibrant: #2ecc71;
  --lime-fresh: #7bed9f;
  --lime-bright: #b8e994;
  --sunset-orange: #e67e22;
  --sunset-coral: #ff6b4a;
  --cream-light: #f8ffed;
  --grass-gradient: linear(135deg, #1a8f4a 0%, #7bed9f 100%);
  --glass-overlay: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-soft: 0 8px 32px rgba(13, 77, 43, 0.12);
  --shadow-hover: 0 12px 48px rgba(13, 77, 43, 0.20);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  background: linear-gradient(180deg, #f0fff4 0%, #e8f5e9 100%);
  color: #2d3436;
  line-height: 1.7;
  overflow-x: hidden;
}

strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}


.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 40%, var(--lime-fresh) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: wind-sway 8s ease-in-out infinite;
}

@keyframes wind-sway {
  0%, 100% { transform: translateX(-10px) rotate(-2deg); }
  50% { transform: translateX(10px) rotate(2deg); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}


.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--sunset-coral) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(230, 126, 34, 0.5);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}


.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  border: 3px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-button-secondary:hover {
  background: #ffffff;
  color: var(--emerald-deep);
}


.section-pad {
  padding: 5rem 1.5rem;
}

.section-pad-large {
  padding: 7rem 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--emerald-deep);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald-vibrant), var(--lime-fresh));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #636e72;
  max-width: 700px;
  margin-bottom: 3rem;
}


.glass-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  height: 100%;
}

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


.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(13, 77, 43, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 1rem;
}

.service-description {
  color: #636e72;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald-rich);
  margin-bottom: 1rem;
}

.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}


.feature-card {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-rich));
  border-radius: 24px;
  padding: 2.5rem;
  color: #ffffff;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: scale(1.03);
}

.feature-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--lime-fresh));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-text {
  opacity: 0.9;
  font-size: 0.95rem;
}


.team-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

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

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-vibrant));
}

.team-info {
  padding: 1.5rem 2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--emerald-rich);
  font-weight: 500;
}


.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--lime-fresh);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: #636e72;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
}

.author-name {
  font-weight: 700;
  color: var(--emerald-deep);
}

.author-location {
  font-size: 0.85rem;
  color: #999;
}


.contact-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--emerald-deep);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--emerald-vibrant);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}


.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-deep);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8ffed;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f8ffed;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: #636e72;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  box-shadow: 0 2px 20px rgba(13, 77, 43, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--emerald-deep);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #636e72;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--emerald-deep);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-vibrant), var(--lime-fresh));
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--emerald-deep);
}


.site-footer {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-rich));
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--lime-fresh);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lime-fresh);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}


.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 450px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--emerald-deep);
}

.cookie-text {
  font-size: 0.95rem;
  color: #636e72;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--emerald-rich));
  color: #ffffff;
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--emerald-deep);
  border: 2px solid var(--emerald-deep);
}

.cookie-btn-decline:hover {
  background: #f8ffed;
}


.blog-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-vibrant));
}

.blog-content {
  padding: 1.5rem 2rem;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: #636e72;
  font-size: 0.95rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}


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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lime-fresh), var(--emerald-vibrant));
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 77, 43, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #ffffff;
  font-weight: 600;
}


.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--emerald-vibrant);
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--emerald-rich);
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #636e72;
}

.pricing-features li::before {
  content: '✓';
  color: var(--emerald-vibrant);
  font-weight: bold;
}


.inner-hero {
  min-height: 45vh;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  animation: wind-sway 10s ease-in-out infinite;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.inner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}


.stats-section {
  background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-rich));
  padding: 4rem 1.5rem;
}

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

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--lime-fresh));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}


@media screen and (max-width: 768px) {
  .logo-text {
    font-size: 1.1rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button, .cta-button-secondary {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .section-pad {
    padding: 3rem 1rem;
  }

  .section-pad-large {
    padding: 4rem 1rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald-rich) 100%);
  text-align: center;
  padding: 2rem;
}

.thank-you-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 4rem 2rem;
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--emerald-vibrant), var(--lime-fresh));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.thank-you-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald-deep);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 2rem;
}