:root {
  --primary-green: #42d3a5;
  --secondary-green: #6de0b9;
  --light-green: #e8fdf7;
  --dark-green: #2ba377;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3',
    'メイリオ', Meiryo, 'MS ゴシック', sans-serif;
  --font-en: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.job-icon {
  text-align: center;
  margin-bottom: 1rem;
}

.job-icon i {
  font-size: 3rem;
  color: var(--primary-green);
}

.job-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.job-details li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.job-details li:before {
  content: '•';
  color: var(--primary-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.job-details li:last-child {
  border-bottom: none;
}
.google-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(66, 211, 165, 0.1);
  overflow: hidden;
}

.google-form-iframe {
  width: 100%;
  border: none;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-intro {
  background: var(--light-green);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary-green);
}

.privacy-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section h2 {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-green);
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.privacy-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

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

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 3px solid var(--primary-green);
}

.contact-info p {
  margin: 0.5rem 0;
}

.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-green);
  position: relative;
  letter-spacing: -0.01em;
}

h2.text-center {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

h2.text-center::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.9;
}

.heading-en {
  display: block;
  font-family: var(--font-en);
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-light);

  text-transform: uppercase;
  opacity: 0.7;
  position: relative;
}

.text-center .heading-en {
  text-align: center;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  font-weight: 600;
  position: relative;
}

h2:not(.text-center) .heading-en {
  text-align: left;

  position: relative;
  padding-left: 1rem;
}

h2:not(.text-center) .heading-en::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 50% 100%);
  opacity: 0.8;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(66, 211, 165, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  position: relative;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  line-height: 1.1;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-tagline {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.logo-name {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 0;
  letter-spacing: 0.01em;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transition: width 0.3s ease;
}

.nav a:hover::before,
.nav a.active::before {
  width: 80%;
}

.nav a:hover,
.nav a.active {
  background-color: rgba(66, 211, 165, 0.05);
}

.nav-cta {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  border-radius: 6px;
  margin-left: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-green);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.menu-toggle:hover span {
  background-color: var(--secondary-green);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.hero {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero-main {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(65, 60, 55, 0.7) 0%,
    rgba(85, 80, 75, 0.5) 50%,
    rgba(95, 90, 85, 0.3) 100%
  );
  z-index: 2;
}

.hero-main .hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-container {
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--primary-green);
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-green);
}

.btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

.section-mission {
  background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 50%, #ffffff 100%);
  position: relative;
}

.section-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(66, 211, 165, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(66, 211, 165, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section-services {
  position: relative;
  background: url('../images/services/services-background.jpg') center/cover
    no-repeat;
  background-attachment: fixed;
}

.section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/services/services-background.jpg') center/cover
    no-repeat;
  background-attachment: fixed;
  filter: blur(3px);
  z-index: 0;
}

.section-services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.section-services .container {
  position: relative;
  z-index: 2;
}

.section-alt {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.section-alt .card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-contact {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--primary-green) 100%
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

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

.section-contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.08) 42px,
      rgba(255, 255, 255, 0.08) 44px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.05) 62px,
      rgba(255, 255, 255, 0.05) 64px
    ),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.04) 82px,
      rgba(255, 255, 255, 0.04) 84px
    );
  opacity: 0.8;
  z-index: 2;
  animation: stripeMove 25s linear infinite;
}

@keyframes stripeMove {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 84px 84px, -84px 84px, 168px 168px;
  }
}

.section-contact .container {
  position: relative;
  z-index: 3;
}

.section-contact h2 {
  color: var(--white);
}

.section-contact h2.text-center::before {
  content: '' !important;
  position: absolute !important;
  top: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  ) !important;
  clip-path: polygon(
    50% 0%,
    100% 25%,
    100% 75%,
    50% 100%,
    0% 75%,
    0% 25%
  ) !important;
  filter: invert(1) !important;
  opacity: 1 !important;
  z-index: 10 !important;
}

.section-contact p {
  color: rgba(255, 255, 255, 0.9);
}

.section-contact .heading-en {
  color: rgba(255, 255, 255, 0.7);
  text-align: center !important;
  padding-left: 0 !important;
}

.section-contact .text-center .heading-en {
  text-align: center !important;
  padding-left: 0 !important;
}

.section-contact h2:not(.text-center) .heading-en::before {
  display: none;
}

.section-contact .btn {
  background-color: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--white);
}

.section-contact .btn:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.section-contact .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--white);
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.section-contact .btn-primary:hover {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.contact-cta-actions {
  margin-top: 2.5rem;
}

.section-contact .btn-primary i {
  margin-right: 0.8rem;
  font-size: 1rem;
}

.contact-info-brief {
  margin-top: 2rem;
}

.contact-info-brief p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-brief i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

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

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.principles-row-top {
  margin-bottom: 2rem;
}

.principles-row-bottom {
  max-width: calc(66.666% + 1rem);
  margin: 0 auto;
  position: relative;
}

.card {
  background-color: var(--white);
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

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

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

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

.footer {
  background-color: #333333;
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section > p:first-child {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  margin-top: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  background-color: #555555;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.social-icon.youtube:hover {
  background-color: #ff0000;
}

.social-icon.tiktok:hover {
  background-color: #000000;
}

.social-icon.facebook:hover {
  background-color: #1877f2;
}

.header-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-social .social-icon {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  background-color: var(--primary-green);
  color: white;
  transition: all 0.3s ease;
}

.header-social .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 211, 165, 0.3);
}

.header-social .social-icon.youtube {
  background-color: #ff0000;
}

.header-social .social-icon.tiktok {
  background-color: #000000;
}

.header-social .social-icon.facebook {
  background-color: #1877f2;
}

.mobile-social {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
}

.mobile-social .social-icon {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  margin-right: 0.5rem;
  background-color: var(--primary-green);
  color: white;
  transition: all 0.3s ease;
}

.mobile-social .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 211, 165, 0.3);
}

.mobile-social .social-icon.youtube {
  background-color: #ff0000;
}

.mobile-social .social-icon.tiktok {
  background-color: #000000;
}

.mobile-social .social-icon.facebook {
  background-color: #1877f2;
}

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

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

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}

.hero-sub {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 50%,
    #5ba3ff 100%
  );
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(66, 211, 165, 0.15);
}

.hero-sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="0.3" fill="white" opacity="0.08"/><circle cx="40" cy="70" r="0.4" fill="white" opacity="0.06"/><circle cx="90" cy="90" r="0.2" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.6" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
}

.hero-sub h1 {
  font-size: 2.8rem;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero-sub .heading-en {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.feature-card {
  position: relative;

  margin-bottom: 2rem;
}

.feature-number {
  background: var(--primary-green);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-summary {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.feature-detail ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.president-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.president-title {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.president-profile h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

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

.president-profile li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.message-content {
  max-width: 800px;
  margin: 3rem auto 0;
}

.message-text h3 {
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.signature {
  text-align: right;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.info-table th,
.info-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background-color: var(--light-gray);
  font-weight: 700;
  width: 30%;
  color: var(--primary-green);
}

.info-table ul {
  margin: 0;
  padding-left: 1.5rem;
}

.history-timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-green);
}

.timeline-year {
  position: absolute;
  left: -6rem;
  top: 0;
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.1rem;
}

.timeline-content h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.access-info {
  margin-top: 1rem;
}

.station-info {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.station-info h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.parking-info {
  margin-top: 1rem;
}

.contact-phone,
.contact-email {
  text-align: center;
  padding: 1rem;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(66, 211, 165, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.required {
  color: #ff4757;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: var(--font-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group small {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.3rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin: 0;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}
.google-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(66, 211, 165, 0.1);
  overflow: hidden;
  border: 1px solid rgba(66, 211, 165, 0.08);
}

.google-form-iframe {
  display: block;
  border: none;
  background: transparent;
  min-height: 1200px;
}

.form-notice {
  margin-top: 2rem;
}

.form-notice a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
}

.form-notice a:hover {
  color: var(--dark-green);
}

.privacy-content h3,
.privacy-content h4 {
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section-cta {
  background: linear-gradient(135deg, var(--light-green), var(--white));
}

.services-stylish {
  margin-top: 5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
  position: relative;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 10px 40px rgba(66, 211, 165, 0.12);
  transition: all 0.4s ease;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 211, 165, 0);
  transition: all 0.4s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 0;
}

.service-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.service-list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service-list li:before {
  content: '●';
  position: absolute;
  left: 0.5rem;
  color: var(--primary-green);
  font-size: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-button {
  margin-top: 2rem;
}

.service-item-right {
  grid-template-areas: 'content image';
}

.service-item-left {
  grid-template-areas: 'image content';
}

.service-item-right .service-content {
  grid-area: content;
}

.service-item-right .service-image {
  grid-area: image;
}

.service-item-left .service-content {
  grid-area: content;
}

.service-item-left .service-image {
  grid-area: image;
}

.mission-simple {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.mission-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 3rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto;
}

.mission-text p {
  margin-bottom: 2rem;

  text-align: left;
}

.service-description {
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.service-flow-arrow {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.service-flow-card {
  position: relative;
  text-align: center;
}

.service-flow-card .card-icon {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  clip-path: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem auto;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.service-card {
  position: relative;
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
  position: relative;
}

.cleaning-office {
  background: linear-gradient(135deg, #42d3a5, #6de0b9);
}
.cleaning-regular {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}
.cleaning-special {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}
.cleaning-exterior {
  background: linear-gradient(135deg, #059669, #34d399);
}
.interior-office {
  background: linear-gradient(135deg, #dc2626, #f87171);
}
.interior-reform {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}
.interior-restoration {
  background: linear-gradient(135deg, #7c2d12, #a3a3a3);
}
.interior-equipment {
  background: linear-gradient(135deg, #374151, #6b7280);
}

.service-summary {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features span {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 0.9rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-color),
    transparent
  );
}

.section:first-of-type::before {
  display: none;
}

.section-recruitment {
  background: linear-gradient(
    135deg,
    var(--light-green) 0%,
    var(--white) 50%,
    var(--light-green) 100%
  );
  position: relative;
  overflow: hidden;
}

.recruitment-cta {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.recruitment-content {
  text-align: left;
}

.recruitment-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.recruitment-content h2 {
  margin-bottom: 1.5rem;
  color: var(--dark-green);
}

.recruitment-content p {
  text-align: start;
  margin-bottom: 2rem;
}

.recruitment-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--primary-green);
  font-size: 1.1rem;
  width: 20px;
}

.recruitment-visual {
  position: relative;
}

.recruitment-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(66, 211, 165, 0.15);
  position: relative;
}

.recruitment-visual::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  z-index: -1;
  opacity: 0.1;
}

.btn-recruitment {
  background: linear-gradient(135deg, #2c5f2d, #4a7c59);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn-recruitment i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-recruitment:hover {
  background: linear-gradient(135deg, #4a7c59, #2c5f2d);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.btn-recruitment:hover i {
  transform: translateX(3px);
}

.btn-recruitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-recruitment:hover::before {
  left: 100%;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  min-height: 400px;
}

.feature-card.feature-reverse {
  grid-template-columns: 1.5fr 1fr;
}

.feature-card.feature-reverse .feature-visual {
  order: 2;
}

.feature-card.feature-reverse .feature-content {
  order: 1;
}

.feature-visual {
  position: relative;
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-visual img {
  transform: scale(1.05);
}

.feature-content {
  position: relative;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-number {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.feature-card h2 {
  font-size: 2rem;
  margin: 0;
  color: var(--text-dark);
}

.feature-highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.highlight-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.s-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

.s-title {
  display: block;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.s-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.category-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.category-item h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0rem;
  color: var(--text-dark);
}

.category-item span {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.improvement-cycle {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.cycle-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(66, 211, 165, 0.05);
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cycle-item:hover {
  border-color: var(--primary-green);
}

.cycle-icon {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 1.1rem;
}

.cycle-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.cycle-item span {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.cycle-arrow {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
}

.staff-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.strength-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.strength-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.strength-item i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.strength-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.strength-item span {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.4;
}

.conditions-list,
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.conditions-list li,
.requirements-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  position: relative;
}

.conditions-list li:last-child,
.requirements-list li:last-child {
  border-bottom: none;
}

.conditions-list li::before,
.requirements-list li::before {
  content: '▶';
  color: var(--primary-green);
  font-size: 0.8rem;
  margin-right: 0.8rem;
  font-weight: 700;
}

.conditions-list li strong {
  color: var(--primary-green);
  font-weight: 600;
  margin-right: 0.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 211, 165, 0.3);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 211, 165, 0.3);
}

.back-to-top:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .sm-none {
    display: none;
  }
  .section-contact p {
    text-align: start;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-summary {
    margin-bottom: 1rem;
  }

  .service-highlights {
    margin-bottom: 1rem;
  }

  .highlight {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }

  .service-features {
    margin-bottom: 1.5rem;
  }

  .service-features span {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 1.3rem;
  }

  .service-features span::before {
    font-size: 0.8rem;
  }

  .service-flow-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-flow-arrow {
    font-size: 2rem;
    transform: rotate(90deg);
  }

  .service-flow-card .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    border-radius: 50% !important;
    clip-path: none !important;
  }

  .services-stylish {
    margin-top: 3rem;
  }

  .service-item {
    display: block;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .service-item:last-child {
    margin-bottom: 2rem;
  }

  .service-item-right,
  .service-item-left {
    grid-template-areas: none;
    display: flex;
    flex-direction: column;
  }

  .service-content {
    padding: 0;
    margin-bottom: 2rem;
    order: 2;
  }

  .service-image {
    order: 1;
    width: 100%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .service-image {
    height: 250px;
    margin-bottom: 2rem;
  }

  .service-image img {
    width: 100%;
    height: 100%;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }

  .service-list li {
    padding: 0.6rem 0;
    padding-left: 1.6rem;
    font-size: 0.95rem;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .service-button {
    text-align: center;
    margin-top: 1.5rem;
  }

  .mission-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .mission-text p {
    margin-bottom: 1.5rem;
  }

  .feature-icon,
  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .principles-row-top,
  .principles-row-bottom {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .principles-row-bottom {
    margin: 0 auto 1.5rem auto;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  h2 {
    font-size: 1.8rem;
  }

  h2.text-center {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  h2.text-center::before {
    width: 20px;
    height: 20px;
    top: -15px;
  }

  .heading-en {
    font-size: 0.42em;
    letter-spacing: 0.12em;
  }

  h2:not(.text-center) .heading-en {
    padding-left: 0.8rem;
    margin-top: 0.5rem;
  }

  h2:not(.text-center) .heading-en::before {
    width: 10px;
    height: 10px;
  }

  .header {
    padding: 0.8rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  .logo-image {
    height: 32px;
  }

  .logo-tagline {
    font-size: 0.6rem;
    margin-bottom: 0.1rem;
    line-height: 1.2;
  }

  .logo-name {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }

  .menu-toggle {
    display: flex;
  }

  .header-social {
    display: none;
  }

  .mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
  }

  .mobile-social .social-icon {
    margin-right: 0;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 1.2rem 2rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(66, 211, 165, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
  }

  .nav a:hover::before {
    transform: scaleX(1);
  }

  .nav a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
  }

  .nav a.active::before {
    display: none;
  }

  .nav a.active {
    background-color: transparent;
    color: var(--text-dark);
    font-weight: 600;
  }

  .nav-cta {
    margin: 1rem 0;
    padding: 1.2rem 2rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 200px;
  }

  .nav-cta:hover {
    transform: translateY(-3px);
  }

  .recruitment-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .recruitment-content {
    text-align: center;
  }

  .recruitment-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .recruitment-content p {
    margin-bottom: 2rem;
  }

  .recruitment-features {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .feature-item {
    flex-direction: row;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    align-items: center;
    justify-content: center;
  }

  .feature-item i {
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
  }

  .recruitment-visual {
    display: none;
  }

  .recruitment-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 auto 1rem auto;
  }

  .recruitment-button {
    text-align: center;
    margin-top: 1rem;
  }

  .btn-recruitment {
    font-size: 1rem;
    padding: 0.9rem 2rem;
    gap: 0.6rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .section-services {
    background-attachment: scroll;
  }

  .section-services::before {
    background-attachment: scroll;
    filter: blur(2px);
  }

  .section-services::after {
    background: rgba(255, 255, 255, 0.9);
  }

  .section-contact h2.text-center::before {
    content: '' !important;
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    background: linear-gradient(
      135deg,
      var(--primary-green),
      var(--secondary-green)
    ) !important;
    clip-path: polygon(
      50% 0%,
      100% 25%,
      100% 75%,
      50% 100%,
      0% 75%,
      0% 25%
    ) !important;
    filter: invert(1) !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }

  .section-contact .heading-en {
    text-align: center !important;
    padding-left: 0 !important;
  }
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .mission-simple {
    padding: 1.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .highlight {
    font-size: 0.8rem;
  }

  .service-features span {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    padding-left: 1.4rem;
  }

  .service-features span::before {
    font-size: 0.85rem;
  }

  .service-flow-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.8rem;
  }

  .service-flow-arrow {
    font-size: 1.3rem;
  }

  .service-flow-card .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    border-radius: 50% !important;
    clip-path: none !important;
  }

  .feature-card {
    gap: 2rem;

    align-items: start;
  }

  .feature-visual img {
    height: 250px;
  }

  .feature-card h2 {
    font-size: 1.8rem;
  }

  .service-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .staff-strengths {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruitment-cta {
    grid-template-columns: 1fr;
  }

  .recruitment-content h2 {
    font-size: 2rem;
  }

  .recruitment-features {
    gap: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    flex-direction: row;
    gap: 0.4rem;
    font-size: 0.95rem;
  }

  .recruitment-visual img {
    height: 280px;
  }

  .services-stylish {
    margin-top: 4rem;
  }

  .service-item {
    gap: 4rem;
    margin-bottom: 6rem;
  }

  .service-image {
    height: 320px;
  }

  .service-content h3 {
    font-size: 2.2rem;
  }

  .service-content p {
    font-size: 1.05rem;
  }

  .service-list {
    gap: 0.6rem;
  }

  .service-list li {
    font-size: 0.98rem;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .hero-buttons .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    max-width: 250px;
  }

  .hero-sub {
    padding: 1.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 0 1rem;
  }

  .logo-image {
    height: 28px;
  }

  .logo-tagline {
    font-size: 0.55rem;
  }

  .logo-name {
    font-size: 1rem;
  }

  .mission-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .mission-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .services-stylish {
    margin-top: 2rem;
  }

  .service-item {
    margin-bottom: 3rem;
  }

  .service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .service-image {
    height: 200px;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
  }

  .service-list li:before {
    left: 0.3rem;
    font-size: 0.7rem;
  }

  .service-button {
    margin-top: 1rem;
  }

  .section-contact .btn {
    display: block;
    width: 100%;
    margin: 0 0 1rem 0 !important;
    text-align: center;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 2rem;

    min-height: auto;
    align-items: start;
  }

  .feature-card.feature-reverse {
    grid-template-columns: 1fr;
  }

  .feature-card.feature-reverse .feature-visual,
  .feature-card.feature-reverse .feature-content {
    order: initial;
  }

  .feature-visual img {
    height: 200px;
  }

  .feature-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .feature-card h2 {
    font-size: 1.6rem;
  }

  .feature-highlights {
    flex-direction: column;
    gap: 1rem;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .highlight-number {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .s-item {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .s-title {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 60px;
  }

  .service-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .category-item {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .category-item i {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .improvement-cycle {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cycle-arrow {
    display: none;
  }

  .staff-strengths {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .strength-item {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
  }

  .strength-item i {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  .hero h1 {
    font-size: 4rem;
  }
}

@media print {
  .header,
  .footer,
  .btn,
  .menu-toggle {
    display: none;
  }

  .main {
    margin-top: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  .section {
    page-break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
