/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

html, body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #F5F9F5;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  position: relative;
}

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeIn 0.5s ease;
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInLeft 0.6s ease;
}

.logo-circle {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #8FBC8F, #6B9B6B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(143, 188, 143, 0.25);
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #333;
}

.main-nav {
  display: flex;
  gap: 32px;
  animation: fadeIn 0.8s ease;
}

.nav-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #8FBC8F;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.nav-label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.nav-sublabel {
  color: #999;
  font-size: 10px;
  text-transform: lowercase;
  margin-top: 2px;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  animation: slideInRight 0.6s ease;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background-color: #8FBC8F;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(143, 188, 143, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.btn-phone:hover {
  background-color: #6B9B6B;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
  animation: none;
}

.btn-contact {
  padding: 10px 24px;
  background-color: white;
  color: #8FBC8F;
  text-decoration: none;
  border: 2px solid #8FBC8F;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #8FBC8F;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

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

.btn-contact:hover {
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(143, 188, 143, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #8FBC8F;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 80px 30px 30px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-item {
  padding: 18px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.mobile-nav-item:hover {
  color: #8FBC8F;
  padding-left: 10px;
}

.mobile-buttons {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}

.mobile-btn {
  display: block;
  padding: 15px;
  background-color: #8FBC8F;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-btn:hover {
  background-color: #6B9B6B;
}

body.menu-open {
  overflow: hidden;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.menu-overlay.active {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(rgba(143, 188, 143, 0.2), rgba(107, 155, 107, 0.25)),
              url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=1920&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255, 193, 7, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero-badge {
  background-color: rgba(143, 188, 143, 0.92);
  color: white;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 26px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(143, 188, 143, 0.25);
  opacity: 1;
  letter-spacing: 0.5px;
  overflow: visible;
  position: relative;
}

.hero-badge .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(143, 188, 143, 0.92);
  animation: slideReveal 0.8s ease forwards;
  z-index: -1;
}

.hero-badge:nth-child(1) .char:nth-child(1) { animation: charFadeIn 0.5s ease 0.3s forwards; }
.hero-badge:nth-child(1) .char:nth-child(2) { animation: charFadeIn 0.5s ease 0.5s forwards; }
.hero-badge:nth-child(1) .char:nth-child(3) { animation: charFadeIn 0.5s ease 0.7s forwards; }
.hero-badge:nth-child(1) .char:nth-child(4) { animation: charFadeIn 0.5s ease 0.9s forwards; }
.hero-badge:nth-child(1) .char:nth-child(5) { animation: charFadeIn 0.5s ease 1.1s forwards; }
.hero-badge:nth-child(1) .char:nth-child(6) { animation: charFadeIn 0.5s ease 1.3s forwards; }

.hero-badge:nth-child(2) .char:nth-child(1) { animation: charFadeIn 0.5s ease 1.6s forwards; }
.hero-badge:nth-child(2) .char:nth-child(2) { animation: charFadeIn 0.5s ease 1.8s forwards; }

.hero-badge:nth-child(3) .char:nth-child(1) { animation: charFadeIn 0.5s ease 2.1s forwards; }
.hero-badge:nth-child(3) .char:nth-child(2) { animation: charFadeIn 0.5s ease 2.3s forwards; }
.hero-badge:nth-child(3) .char:nth-child(3) { animation: charFadeIn 0.5s ease 2.5s forwards; }
.hero-badge:nth-child(3) .char:nth-child(4) { animation: charFadeIn 0.5s ease 2.7s forwards; }

@keyframes charFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px;
  width: 100%;
  box-sizing: border-box;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease;
}

.icon-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8FBC8F, #6B9B6B);
  color: white;
  border-radius: 50%;
  line-height: 60px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
  }
}

.section-label {
  color: #8FBC8F;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease both, letterSpacing 2s ease-in-out 1s infinite alternate;
}

@keyframes letterSpacing {
  from {
    letter-spacing: 2px;
  }
  to {
    letter-spacing: 3px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes circleTransform {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
    border-radius: 0%;
  }
  30% {
    opacity: 1;
    border-radius: 20%;
  }
  60% {
    transform: scale(1.15) rotate(180deg);
    border-radius: 30%;
  }
  80% {
    transform: scale(0.95) rotate(360deg);
    border-radius: 45%;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(360deg);
    border-radius: 50%;
  }
}

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

/* About Section (previously Concept) */
.about-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.decorative-shape {
  position: absolute;
  opacity: 0;
  z-index: 0;
  animation: floatIn 3s ease-in-out infinite;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  25% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.5;
    transform: translateY(-10px) rotate(5deg);
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
    transform: translateY(0) rotate(0deg);
  }
}

.shape-1 {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #FFE0B2;
  top: 150px;
  left: 80px;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  background-color: #F48FB1;
  top: 400px;
  right: 120px;
  border-radius: 5px;
  transform: rotate(-20deg);
  animation-delay: 1s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  background-color: #FFF59D;
  bottom: 200px;
  left: 100px;
  border-radius: 50%;
  animation-delay: 2s;
}

.main-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
  animation: fadeInUp 0.8s ease 0.2s both, textGlow 2s ease-in-out 1s infinite alternate;
}

/* h1 and h2 animations */
h1, h2 {
  animation: fadeInScale 0.8s ease both;
  position: relative;
}

h1::after, h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8FBC8F, transparent);
  animation: underlineExpand 1s ease 0.5s forwards;
}

h1 {
  animation: fadeInScale 1s ease both, textShine 3s ease-in-out 1.5s infinite;
}

h2 {
  animation: fadeInScale 0.9s ease 0.2s both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 5px rgba(143, 188, 143, 0.3);
  }
  to {
    text-shadow: 0 0 15px rgba(143, 188, 143, 0.5), 0 0 25px rgba(143, 188, 143, 0.3);
  }
}

@keyframes textShine {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

@keyframes underlineExpand {
  from {
    transform: translateX(-50%) scaleX(0);
  }
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

.sub-heading {
  font-size: 32px;
  display: block;
  margin-top: 10px;
  animation: slideInFromBottom 1s ease 0.5s both;
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  opacity: 0;
  animation: zoomInRotate 0.8s ease forwards;
}

@keyframes zoomInRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.about-image-wrapper.img-1 {
  width: 180px;
  height: 180px;
  margin-left: 30px;
  animation-delay: 0.6s;
}

.about-image-wrapper.img-2 {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: 50px;
  animation-delay: 0.9s;
}

.about-image-wrapper.img-3 {
  width: 190px;
  height: 190px;
  margin-left: 80px;
  animation-delay: 1.2s;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=400&q=80');
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper.img-1 .image-placeholder {
  background: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=400&q=80');
  background-size: cover;
  background-position: center;
}

.about-image-wrapper.img-2 .image-placeholder {
  background: url('https://images.unsplash.com/photo-1581579438747-1dc8d17bbce4?w=400&q=80');
  background-size: cover;
  background-position: center;
}

.about-image-wrapper.img-3 .image-placeholder {
  background: url('https://images.unsplash.com/photo-1612349317150-e413f6a5b16d?w=400&q=80');
  background-size: cover;
  background-position: center;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  animation: slideInRight 0.8s ease 0.4s both;
}

.about-text p {
  margin-bottom: 0;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease forwards;
}

.about-text p:nth-child(1) { animation-delay: 0.5s; }
.about-text p:nth-child(2) { animation-delay: 0.6s; }
.about-text p:nth-child(3) { animation-delay: 0.7s; }
.about-text p:nth-child(5) { animation-delay: 0.8s; }
.about-text p:nth-child(6) { animation-delay: 0.9s; }
.about-text p:nth-child(8) { animation-delay: 1.0s; }
.about-text p:nth-child(9) { animation-delay: 1.1s; }
.about-text p:nth-child(11) { animation-delay: 1.2s; }
.about-text p:nth-child(12) { animation-delay: 1.3s; }
.about-text p:nth-child(13) { animation-delay: 1.4s; }
.about-text p:nth-child(15) { animation-delay: 1.5s; }
.about-text p:nth-child(17) { animation-delay: 1.6s; }

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  margin-top: 30px;
  padding: 15px 45px;
  background-color: #8FBC8F;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(143, 188, 143, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::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-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background-color: #6B9B6B;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(143, 188, 143, 0.4);
}

/* Services Section (previously Information) */
.services-section {
  padding: 80px 0;
  background-color: #F0F6F0;
  overflow: hidden;
}

.service-circles {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 60px 0;
}

.service-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 500;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: circleTransform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.service-circle:nth-child(1) {
  animation-delay: 0.2s;
}

.service-circle:nth-child(2) {
  animation-delay: 0.4s;
}

.service-circle:nth-child(3) {
  animation-delay: 0.6s;
}

.service-circle:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.service-circle.orange {
  background: linear-gradient(135deg, #FF9800, #F57C00);
}

.service-circle.green {
  background: linear-gradient(135deg, #8FBC8F, #6B9B6B);
}

.service-circle.blue {
  background: linear-gradient(135deg, #4FC3F7, #29B6F6);
}

.circle-content {
  text-align: center;
  padding: 20px;
}

.circle-content > * {
  opacity: 0;
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.circle-content > *:nth-child(1) { animation-delay: 1.0s; }
.circle-content > *:nth-child(2) { animation-delay: 1.2s; }
.circle-content > *:nth-child(3) { animation-delay: 1.4s; }

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.circle-label {
  font-size: 16px;
  margin-bottom: 10px;
}

.circle-value {
  font-size: 38px;
  font-weight: 700;
  margin: 15px 0;
}

.circle-value small {
  font-size: 20px;
}

.circle-note {
  font-size: 13px;
  margin-top: 5px;
}

.circle-item {
  font-size: 16px;
  margin: 12px 0;
}

.circle-text {
  font-size: 15px;
  line-height: 1.6;
}

/* Service Cards (previously Info Cards) */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background-color: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.service-card:nth-child(1) {
  animation-delay: 0.3s;
}

.service-card:nth-child(2) {
  animation-delay: 0.4s;
}

.service-card:nth-child(3) {
  animation-delay: 0.5s;
}

.service-card:nth-child(4) {
  animation-delay: 0.6s;
}

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

.service-card:hover .card-image .image-placeholder {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1544776193-352d25ca82cd?w=600&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s ease;
}

.service-card:nth-child(1) .card-image .image-placeholder {
  background: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=600&q=80');
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(2) .card-image .image-placeholder {
  background: url('https://images.unsplash.com/photo-1581579438747-1dc8d17bbce4?w=600&q=80');
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(3) .card-image .image-placeholder {
  background: url('https://images.unsplash.com/photo-1609188076864-c35269136896?w=600&q=80');
  background-size: cover;
  background-position: center;
}

.service-card:nth-child(4) .card-image .image-placeholder {
  background: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=600&q=80');
  background-size: cover;
  background-position: center;
}

.service-card h3 {
  padding: 20px 20px 10px;
  font-size: 18px;
  color: #333;
  font-weight: 700;
  animation: fadeInUp 0.5s ease both;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  color: #8FBC8F;
  transform: translateY(-3px);
}

.service-card p {
  padding: 0 20px 25px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease 0.3s forwards;
}

/* Company Section */
.company-section {
  position: relative;
  padding: 80px 0;
  background-color: #F5F9F5;
  overflow: hidden;
}

.company-content {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  justify-content: center;
}

.company-info-full {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.company-logo {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.company-logo > * {
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
}

.company-logo .logo-circle {
  animation-delay: 0.2s;
}

.company-logo .logo-text {
  animation-delay: 0.4s;
}

.company-logo .logo-subtitle {
  animation-delay: 0.6s;
}

.company-logo .logo-circle {
  width: 80px;
  height: 80px;
  font-size: 22px;
  margin: 0 auto 15px;
}

.company-logo .logo-text {
  font-size: 22px;
  margin-bottom: 8px;
}

.company-logo .logo-subtitle {
  font-size: 13px;
  color: #999;
  letter-spacing: 2px;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.company-details .detail-row {
  opacity: 0;
  animation: slideInFromLeft 0.6s ease forwards;
}

.company-details .detail-row:nth-child(1) { animation-delay: 0.5s; }
.company-details .detail-row:nth-child(2) { animation-delay: 0.6s; }
.company-details .detail-row:nth-child(3) { animation-delay: 0.7s; }
.company-details .detail-row:nth-child(4) { animation-delay: 0.8s; }
.company-details .detail-row:nth-child(5) { animation-delay: 0.9s; }
.company-details .detail-row:nth-child(6) { animation-delay: 1.0s; }
.company-details .detail-row:nth-child(7) { animation-delay: 1.1s; }

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
  font-weight: 600;
  color: #666;
  font-size: 15px;
}

.detail-value {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}



/* Contact Section */
.contact-section {
  position: relative;
  background: linear-gradient(to bottom, #F0F6F0 0%, #F5F9F5 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}

.decorative-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100"><path fill="%23FFFBF0" d="M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z"/></svg>');
  background-size: cover;
}

.contact-content {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 30px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-method {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease both;
  width: 100%;
  max-width: 800px;
}

.contact-method:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-method:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-method h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 20px 0;
  animation: fadeInUp 0.6s ease both;
}

h3 {
  animation: fadeInUp 0.7s ease both;
  transition: color 0.3s ease;
}

h3:hover {
  color: #8FBC8F;
}

.method-icon {
  font-size: 50px;
  text-align: center;
  animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

.phone-number {
  font-size: 36px;
  font-weight: 700;
  color: #8FBC8F;
  text-align: center;
  margin: 20px 0;
  animation: pulse 2s ease-in-out infinite;
}

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

.phone-hours {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Contact Form */
.contact-form {
  margin-top: 20px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: fadeInSlideUp 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.3s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.5s; }
.form-group:nth-child(4) { animation-delay: 0.6s; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.required {
  color: #FF5252;
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8FBC8F;
  box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.1);
  transform: translateY(-1px);
}

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

.btn-submit {
  padding: 15px 40px;
  background-color: #8FBC8F;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(143, 188, 143, 0.3);
  align-self: center;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s forwards;
}

.btn-submit::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-submit:hover::before {
  width: 300px;
  height: 300px;
}

.btn-submit:hover {
  background-color: #6B9B6B;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(143, 188, 143, 0.4);
}

/* Contact Access */
.contact-access {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease 0.6s both;
}

.contact-access h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
  animation: fadeInUp 0.6s ease 0.7s both;
}

.access-info {
  text-align: center;
  margin-bottom: 30px;
}

.access-info .address {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  opacity: 0;
  animation: slideInFromBottom 0.6s ease 0.8s forwards;
}

.access-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: zoomInRotate 0.8s ease 1s forwards;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.map-link {
  color: #8FBC8F;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #6B9B6B;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #556B55, #6B8B6B);
  color: white;
  padding: 60px 0 0;
  margin-top: 80px;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo .logo-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8FBC8F, #6B9B6B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(143, 188, 143, 0.3);
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.footer-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8FBC8F;
  display: inline-block;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeInSlideUp 0.4s ease forwards;
}

.footer-column:nth-child(1) ul li:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(1) ul li:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(1) ul li:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(1) ul li:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(1) ul li:nth-child(5) { animation-delay: 0.5s; }

.footer-column:nth-child(2) ul li:nth-child(1) { animation-delay: 0.2s; }
.footer-column:nth-child(2) ul li:nth-child(2) { animation-delay: 0.3s; }
.footer-column:nth-child(2) ul li:nth-child(3) { animation-delay: 0.4s; }
.footer-column:nth-child(2) ul li:nth-child(4) { animation-delay: 0.5s; }
.footer-column:nth-child(2) ul li:nth-child(5) { animation-delay: 0.6s; }

.footer-icon {
  font-size: 16px;
  min-width: 20px;
}

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

.footer-column a:hover {
  color: #8FBC8F;
}

.footer-column span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 13px;
}

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

.footer-links a:hover {
  color: #8FBC8F;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .company-info-full {
    padding: 35px;
  }
  
  .contact-info-box {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-buttons {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .logo-text {
    font-size: 15px;
  }
  
  .logo-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .hero-section {
    height: 400px;
    padding-left: 5%;
  }
  
  .hero-badge {
    font-size: 20px;
    padding: 12px 30px;
  }
  
  .main-heading {
    font-size: 28px;
  }
  
  .about-content {
    padding: 0 15px;
    gap: 40px;
  }
  
  .about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-image-wrapper {
    margin: 0 !important;
  }
  
  .about-image-wrapper.img-1 {
    width: 100% !important;
    height: 0;
    padding-bottom: 100%;
    position: relative;
  }
  
  .about-image-wrapper.img-2 {
    width: 100% !important;
    height: 0;
    padding-bottom: 100%;
    position: relative;
  }
  
  .about-image-wrapper.img-3 {
    width: 100% !important;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    grid-column: 1 / -1;
    max-width: 180px;
    margin: 0 auto !important;
  }
  
  .about-image-wrapper .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .service-circles {
    flex-direction: column;
    align-items: center;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .company-info-full {
    padding: 25px;
    margin: 0 15px;
  }
  
  .access-map iframe {
    height: 300px;
  }
  
  .contact-info-box {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  
  .contact-access {
    margin: 0 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .main-content {
    padding: 40px 0;
  }
}
