:root {
  --color-primary: #1a1a1a;
  --color-primary-light: #3a3a3a;
  --color-primary-dark: #000;
  --color-accent: #c74f59;
  --color-accent-light: #f55461;
  --color-accent-dark: #720a13;
  --color-text: #1a1a1a;
  --color-text-muted: #3a3a3a;
  --color-text-light: #5a5a5a;
  --color-bg: #faf8f5;
  --color-bg-light: #fffefa;
  --color-white: #fff;
  --color-soft-blue: #bfdbff;
  --color-soft-pink: #fce4ec;
  --color-warm-beige: #fcf9f4;
  --color-light-beige: #faf6f0;
  --color-neutral-gray: #f5f5f5;
  --color-border-gray: #e0e0e0;
  --color-error: #ef4444;
  --color-success: #22c55e;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-2xl: 80px;
  --spacing-3xl: 100px;
  --radius: 20px;
  --radius-sm: 10px;
  --radius-lg: 30px;
  --shadow: 0 10px 40px rgba(21, 67, 136, 0.08);
  --shadow-sm: 0 2px 8px rgba(21, 67, 136, 0.05);
  --shadow-lg: 0 20px 60px rgba(21, 67, 136, 0.12);
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--color-white);
  color: var(--color-text);
  font-family: Montserrat, Noto Sans JP, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
img {
  display: block;
  height: auto;
  max-width: 100%;
}
br.mobile-only {
  display: none;
}
.loading-screen {
  align-items: center;
  background: linear-gradient(135deg, #f5f5f5, #fff);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  width: 100%;
  z-index: 9999;
}
.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}
.loading-content {
  text-align: center;
}
.loading-logo {
  animation: pulse 1.5s ease-in-out infinite;
  margin-bottom: 30px;
}
.loading-logo img {
  height: auto;
  width: 200px;
}
.loading-spinner {
  animation: spin 1s linear infinite;
  border: 3px solid rgba(199, 79, 89, 0.2);
  border-radius: 50%;
  border-top: 3px solid var(--color-accent);
  height: 50px;
  margin: 0 auto 20px;
  width: 50px;
}
.loading-text {
  animation: fadeInOut 1.5s ease-in-out infinite;
  color: var(--color-text-muted);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes pulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes fadeInOut {
  0%,
  to {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
body.loading-active {
  overflow: hidden;
}
@media (max-width: 768px) {
  .loading-logo img {
    width: 150px;
  }
  .loading-spinner {
    height: 40px;
    width: 40px;
  }
}
header {
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.95);
  box-shadow: var(--shadow);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header .logo img {
  height: auto !important;
  max-width: 220px !important;
  width: 100% !important;
}
nav {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 40px;
}
.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}
.nav-menu a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 15px;
  position: relative;
}
.nav-menu a:after {
  background: var(--color-accent);
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  width: 0;
}
.nav-menu a:hover:after {
  width: 80%;
}
.hero {
  align-items: center;
  background: #fff;
  display: flex;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
  position: relative;
  width: 100%;
}
.hero-video {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.hero-overlay {
  background: rgba(21, 67, 136, 0);
  inset: 0;
  position: absolute;
  z-index: 1;
}
.hero-content {
  bottom: 80px;
  color: #fff;
  max-width: 600px;
  position: absolute;
  right: 120px;
  text-align: right;
  z-index: 10;
}
.hero-title {
  animation: fadeInFromLeft 2s ease-out 0.5s forwards;
  color: #fff;
  font-family: Noto Sans JP, sans-serif;
  font-size: 2.4rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  opacity: 0;
  white-space: nowrap;
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero h1:not(.hero-title) {
  animation: heroTextGlow 3s ease-in-out infinite alternate;
  color: #fff;
  font-family: Playfair Display, Georgia, serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero h1:not(.hero-title) span {
  animation: fadeInUp 0.8s ease forwards, fadeOutLater 1s ease 5s forwards;
  display: inline-block;
  opacity: 0;
  transition: transform 0.3s ease;
}
.hero h1:not(.hero-title) span:first-child {
  animation-delay: 0.1s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(2) {
  animation-delay: 0.2s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(3) {
  animation-delay: 0.3s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(4) {
  animation-delay: 0.4s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(5) {
  animation-delay: 0.5s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(6) {
  animation-delay: 0.6s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(7) {
  animation-delay: 0.7s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(8) {
  animation-delay: 0.8s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(9) {
  animation-delay: 0.9s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(10) {
  animation-delay: 1s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(11) {
  animation-delay: 1.1s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(12) {
  animation-delay: 1.2s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(13) {
  animation-delay: 1.3s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(14) {
  animation-delay: 1.4s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(15) {
  animation-delay: 1.5s, 5s;
}
.hero h1:not(.hero-title) span:nth-child(16) {
  animation-delay: 1.6s, 5s;
}
.hero p {
  animation: fadeIn 1s ease 1.7s forwards, fadeOutLater 1s ease 5s forwards;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0;
}
section {
  padding: var(--spacing-2xl) 0;
}
.section-inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--spacing-lg);
}
.section-title {
  color: var(--color-primary);
  font-family: Noto Sans JP, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: var(--spacing-2xl);
  position: relative;
  text-align: center;
}
.section-subtitle {
  color: var(--color-accent);
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.philosophy {
  background: #fff;
  overflow: hidden;
  padding: var(--spacing-3xl) 0;
  position: relative;
  width: 100%;
}
.philosophy-content {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 var(--spacing-lg);
}
.philosophy-text {
  padding: var(--spacing-xl);
}
.philosophy .subtitle {
  color: var(--color-accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.philosophy h2 {
  color: #d97757;
  font-family: Noto Sans JP, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 35px;
}
.philosophy p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 25px;
}
.philosophy-image {
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 500px;
  overflow: hidden;
  width: 100%;
}
.philosophy-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}
.philosophy:hover .philosophy-image img {
  transform: scale(1.05);
}
.read-more {
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 15px 40px;
  transition: var(--transition);
}
.read-more:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
}
.services-overview {
  padding: var(--spacing-3xl) 0;
}
.services-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: var(--spacing-xl);
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--spacing-lg);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.service-card h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.service-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card a {
  color: var(--color-accent);
  font-weight: 600;
}
.service-card .price {
  color: var(--color-accent-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 15px 0;
}
#business-intro {
  background: #fff;
  padding-top: var(--spacing-3xl);
}
.business-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.business-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  width: 100%;
}
.business-item,
.business-item:nth-child(2n) {
  background: #fff;
}
.business-item:nth-child(2n) .business-image {
  order: 2;
}
.business-item:nth-child(2n) .business-text {
  order: 1;
}
.business-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.business-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}
.badge-row {
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}
.badge-row,
.mental-care-badge {
  align-items: center;
  display: flex;
}
.mental-care-badge {
  background: #ffb926;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(255, 185, 38, 0.3);
  color: #fff;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  height: 110px;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-left: auto;
  text-align: center;
  width: 110px;
}
.business-item:hover .business-image img {
  transform: scale(1.05);
}
.business-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xl) 10%;
}
.business-badge,
.business-label {
  background: var(--color-accent);
  border-radius: 25px;
  color: #fff;
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 20px;
  padding: 6px 20px;
  width: fit-content;
}
.business-text h2,
.business-text h3 {
  color: var(--color-primary);
  font-family: Noto Sans JP, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
}
.business-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}
.business-points,
.service-features {
  list-style: none;
  margin: 25px 0;
  padding: 0;
}
.business-points li,
.service-features li {
  color: var(--color-text);
  line-height: 1.6;
  padding: 10px 0 10px 30px;
  position: relative;
}
.business-points li:before,
.service-features li:before {
  color: var(--color-accent);
  content: "✓";
  font-size: 1.2rem;
  font-weight: 700;
  left: 0;
  position: absolute;
}
.detail-link {
  border-bottom: 2px solid transparent;
  color: var(--color-primary);
  display: inline-block;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}
.detail-link:hover {
  border-bottom-color: var(--color-accent);
}
.contact-box {
  align-items: center;
  display: inline-flex;
  gap: 15px;
  justify-content: center;
  padding: 20px;
}
.contact-label {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 0.9rem;
}
.contact-number {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}
.page-hero {
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  padding: 300px 0 80px;
  position: relative;
  text-align: center;
}
.page-hero:before {
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 100%, 0.1),
    rgba(253, 245, 247, 0.3)
  );
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.page-hero p {
  font-size: 1rem;
  letter-spacing: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
.hero-services {
  background-image: url(/img/bg_business.jpg);
}
.hero-company {
  background-image: url(/img/bg_company.jpg);
}
.hero-group {
  background-image: url(images/hero-group.jpg);
}
.hero-access {
  background-attachment: scroll;
  background-image: url(/img/access-img.jpg);
  background-position: bottom;
  background-size: cover;
}
.hero-relife {
  background-image: url(images/hero-relife.jpg);
}
.hero-leaf {
  background-image: url(images/hero-leaf.jpg);
}
.hero-rclean {
  background-image: url(images/hero-rclean.jpg);
}
.hero-relife:before {
  background: linear-gradient(
    135deg,
    rgba(199, 79, 89, 0.8),
    rgba(114, 10, 19, 0.8)
  );
}
.hero-leaf:before {
  background: linear-gradient(
    135deg,
    rgba(34, 139, 34, 0.8),
    rgba(0, 100, 0, 0.8)
  );
}
.hero-rclean:before {
  background: linear-gradient(
    135deg,
    rgba(30, 144, 255, 0.8),
    rgba(0, 91, 187, 0.8)
  );
}
.business-detail {
  background: #fff;
  padding: 80px 0;
}
.business-intro-top {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}
.business-intro-top h2 {
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
.business-intro-top p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.business-conclusion {
  background: url(/img/bg_02.jpg) 50% / cover fixed;
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.business-conclusion:before {
  background: hsla(0, 0%, 100%, 0.5);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.business-conclusion .section-inner {
  position: relative;
  z-index: 2;
}
.business-conclusion h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.5;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}
.business-conclusion p {
  color: hsla(0, 0%, 100%, 0.95);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
}
.service-section {
  border-radius: 30px;
}
.service-header {
  background: linear-gradient(135deg, #a5101c, #c74f59);
  color: #fff;
  padding: 60px;
  position: relative;
}
#relife .service-header {
  background: linear-gradient(135deg, #d89a1a, #ffb926 50%, #ffc850);
}
#leaf .service-header {
  background: linear-gradient(135deg, #5aa030, #7ec850 50%, #9ad670);
}
#rclean .service-header {
  background: linear-gradient(135deg, #1565c0, #1e90ff 50%, #42a5f5);
}
#leaf,
#rclean,
#relife {
  background: #fff;
}
#relife .service-main h3 {
  border-bottom: 3px solid #ffb926;
  color: var(--color-primary);
}
#relife .category-card {
  background: #fffcf5;
}
#relife .category-card h4 {
  color: var(--color-primary);
}
#relife .category-card li:before {
  color: #ffb926;
}
#relife .contact-info-box,
#relife .info-box {
  background: #fffcf5;
}
#relife .contact-info-box h4,
#relife .info-box h4 {
  border-bottom: 2px solid #ffb926;
  color: var(--color-primary);
}
#relife .check-list li:before {
  color: #ffb926;
}
#relife .phone-large {
  color: #d89a1a !important;
}
#relife .support-message {
  background: #fffcf5;
}
#relife .support-message h4 {
  color: var(--color-primary);
}
#relife .support-message .highlight {
  background: #fff;
  color: #d89a1a;
}
#leaf .service-main h3 {
  border-bottom: 3px solid #7ec850;
  color: var(--color-primary);
}
#leaf .step-num {
  background: #7ec850;
}
#leaf .benefit-message {
  background: #fafdf8;
}
#leaf .benefit-message h4 {
  color: var(--color-primary);
}
#leaf .benefit-list strong {
  color: #5aa030;
}
#leaf .contact-info-box,
#leaf .price-info-box {
  background: #fafdf8;
}
#leaf .contact-info-box h4,
#leaf .price-info-box h4 {
  border-bottom: 2px solid #7ec850;
  color: var(--color-primary);
}
#leaf .phone-large,
#leaf .price-amount {
  color: #5aa030 !important;
}
#leaf .flow-steps .step-content h4 {
  color: var(--color-primary);
}
#leaf .flow-steps .step-content strong {
  color: #5aa030;
}
#rclean .service-main h3 {
  border-bottom: 3px solid #1e90ff;
  color: var(--color-primary);
}
#rclean .menu-card {
  background: #fafcff;
}
#rclean .menu-card:hover {
  border-color: #1e90ff;
}
#rclean .menu-card h4 {
  color: var(--color-primary);
}
#rclean .price-tag {
  color: #1565c0;
}
#rclean .contact-info-box,
#rclean .feature-box,
#rclean .other-services-box {
  background: #fafcff;
}
#rclean .contact-info-box h4,
#rclean .feature-box h4,
#rclean .other-services-box h4 {
  border-bottom: 2px solid #1e90ff;
  color: var(--color-primary);
}
#rclean .feature-list li:before {
  color: #1e90ff;
}
.service-number {
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.2;
  position: absolute;
  right: 60px;
  top: 40px;
}
.service-header h2 {
  font-family: Noto Sans JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.service-tagline {
  font-size: 1.2rem;
  opacity: 0.95;
}
.service-image-area {
  background: #f5f5f5;
  height: 450px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.service-image-area img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  width: 100%;
}
.service-image-area:hover img {
  transform: scale(1.05);
}
.service-content-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 2fr 1fr;
  padding: 60px;
}
.service-main h3 {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.service-categories {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
  margin-top: 30px;
}
.category-card {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 25px;
}
.category-card h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.category-card ul {
  list-style: none;
  padding: 0;
}
.category-card li {
  color: var(--color-text);
  font-size: 0.95rem;
  padding: 8px 0 8px 20px;
  position: relative;
}
.category-card li:before {
  color: var(--color-accent);
  content: "・";
  left: 0;
  position: absolute;
}
.benefit-message,
.support-message {
  background: var(--color-warm-beige);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
}
.benefit-message h4,
.support-message h4 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.support-message p {
  line-height: 1.8;
  margin-bottom: 15px;
}
.support-message .highlight {
  color: var(--color-primary);
}
.support-message .highlight,
.support-message .highlight-red {
  background: #fff;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  padding: 15px;
}
.support-message .highlight-red {
  color: #c41e3a;
}
.support-message .support-highlight {
  background: #fff;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 20px;
  padding: 15px;
}
.mental-care-notice {
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
}
.mental-care-notice p {
  color: #ffb926;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}
.flow-steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 40px;
}
.flow-step {
  position: relative;
}
.flow-step:last-child:after {
  display: none;
}
.step-num {
  background: var(--color-accent);
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  margin-bottom: 15px;
  width: 50px;
}
.step-content h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.9rem;
}
.menu-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}
.menu-card-wide {
  grid-column: 1/-1;
}
.service-menu-intro {
  margin-bottom: 40px;
  text-align: center;
}
.menu-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.set-plans-section {
  margin-bottom: 50px;
}
.set-plans-title {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.set-plans-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.set-plan-card {
  background: linear-gradient(135deg, #fff5f6, #fff);
  border: 3px solid var(--color-accent);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
}
.set-plan-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: 0 15px 35px rgba(199, 79, 89, 0.2);
  transform: translateY(-5px);
}
.set-plan-badge {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0,
    var(--color-accent-light) 100%
  );
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(199, 79, 89, 0.3);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}
.set-plan-images {
  align-items: center;
  background: #fff;
  border-radius: 15px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px;
}
.set-plan-image-item {
  flex: 1;
  position: relative;
  text-align: center;
}
.set-plan-image-item img {
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.set-plan-image-item:hover img {
  transform: scale(1.05);
}
.set-plan-image-item .image-label {
  color: var(--color-text);
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}
.set-plan-connector {
  flex-shrink: 0;
  font-size: 1.5rem;
}
.set-plan-connector,
.set-plan-price-box {
  color: var(--color-accent);
  font-weight: 700;
}
.set-plan-price-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  padding: 15px 20px;
  text-align: center;
  white-space: nowrap;
}
.individual-menu-section {
  margin-top: 50px;
}
.individual-menu-title {
  border-bottom: 3px solid #1e90ff;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.menu-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 30px;
  transition: var(--transition);
}
.menu-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.menu-card h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.menu-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.price-tag {
  color: var(--color-accent-dark);
  font-size: 1.3rem;
  font-weight: 700;
}
.tax-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-left: 3px;
}
.menu-card small {
  color: var(--color-text-muted);
  margin-top: 8px;
}
.menu-card small,
.option-note {
  display: block;
  font-size: 0.85rem;
}
.option-note {
  background: #f8f8f8;
  border-radius: 5px;
  color: #666;
  margin-top: 10px;
  padding: 8px 12px;
}
.menu-card-image {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.menu-card-image-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.menu-card-image-wrapper img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.menu-card-image:hover .menu-card-image-wrapper img {
  transform: scale(1.1);
}
.menu-card-content {
  padding: 25px;
}
.menu-card-content h4 {
  margin-bottom: 12px;
}
.menu-card-content p {
  margin-bottom: 15px;
}
.aircon-price-list {
  margin-top: 10px;
}
.aircon-type {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.aircon-type:last-of-type {
  border-bottom: none;
  margin-bottom: 10px;
}
.type-label {
  color: #c41e3a;
  font-size: 0.95rem;
  font-weight: 600;
}
.type-price {
  color: #1565c0;
  font-size: 1.1rem;
  font-weight: 700;
}
.price-note-small {
  color: #c41e3a;
  display: block;
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: left;
}
.service-info {
  position: sticky;
  top: 100px;
}
.contact-info-box,
.feature-box,
.info-box,
.price-info-box {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
}
.contact-info-box h4,
.feature-box h4,
.info-box h4,
.price-info-box h4 {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  color: var(--color-text);
  line-height: 1.6;
  padding: 10px 0 10px 30px;
  position: relative;
}
.check-list li:before {
  color: var(--color-accent);
  content: "●";
  left: 0;
  position: absolute;
}
.price-main {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: center;
}
.price-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.price-amount,
.price-label {
  display: block;
  margin-bottom: 10px;
}
.price-amount {
  color: var(--color-accent-dark);
  font-size: 2.5rem;
  font-weight: 700;
}
.price-note {
  color: var(--color-text-muted);
  display: block;
  font-size: 0.9rem;
}
.price-duration-highlight {
  color: #5aa030;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.insurance-info {
  background: #fff;
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 15px;
}
.contact-info-box dl {
  margin: 0;
}
.contact-info-box dt {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.contact-info-box dd {
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.contact-info-box dd:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.phone-large {
  color: var(--color-primary) !important;
  font-size: 1.8rem !important;
  font-weight: 700;
}
.phone-rclean {
  color: #1e90ff !important;
}
.estimate-message {
  background: #f0f8ff;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.6;
  margin-top: 20px;
  padding: 15px;
  text-align: center;
}
.other-services-box {
  background: var(--color-warm-beige);
  border-radius: 15px;
  margin-top: 40px;
  padding: 30px;
}
.other-services-box h4 {
  color: var(--color-primary);
  margin-bottom: 20px;
}
.other-services-box ul {
  list-style: none;
  padding: 0;
}
.other-services-box li {
  color: var(--color-text);
  padding: 10px 0;
}
.benefit-list {
  list-style: none;
  padding: 0;
}
.benefit-list li {
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-text);
  padding: 15px 0;
}
.benefit-list li:last-child {
  border-bottom: none;
}
.benefit-list strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 5px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  color: var(--color-text);
  padding: 12px 0 12px 25px;
  position: relative;
}
.feature-list li:before {
  color: var(--color-accent);
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
}
.company-info-section {
  background: #fff;
  padding: 80px 0;
}
.company-history,
.company-info-card,
.company-message,
.company-philosophy {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 60px;
}
.company-history h2,
.company-info-card h2,
.company-message h2,
.company-philosophy h2 {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.company-table,
.history-table {
  border-collapse: collapse;
  width: 100%;
}
.company-table tr,
.history-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.company-table tr:last-child,
.history-table tr:last-child {
  border-bottom: none;
}
.company-info-card .company-table th,
.company-table th {
  background: var(--color-warm-beige) !important;
  color: #17171a;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  width: 30%;
}
.company-table td {
  color: var(--color-text);
  line-height: 1.8;
  padding: 20px;
}
.history-table th {
  color: #17171a;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 25px 20px;
  text-align: left;
  vertical-align: top;
  width: 200px;
}
.history-table td {
  color: var(--color-text);
  line-height: 1.8;
  padding: 25px 20px;
}
.message-text p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 25px;
}
.signature {
  margin-top: 50px;
  text-align: right;
}
.signature .position {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.signature .name {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.philosophy-items {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.philosophy-item {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 30px;
}
.philosophy-item h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.philosophy-item p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
}
.philosophy-item ul {
  list-style: none;
  padding: 0;
}
.philosophy-item ul li {
  color: var(--color-text);
  line-height: 1.8;
  padding: 10px 0 10px 25px;
  position: relative;
}
.philosophy-item ul li:before {
  color: var(--color-accent);
  content: "✓";
  font-size: 1.2rem;
  font-weight: 700;
  left: 0;
  position: absolute;
}
.group-section {
  background: #fff;
  padding: 80px 0;
}
.group-intro {
  margin-bottom: 80px;
  text-align: center;
}
.group-intro h2 {
  color: var(--color-primary);
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.group-intro p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}
.group-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.group-category {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 50px;
}
.group-icon {
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  border-radius: 15px;
  display: flex;
  height: 60px;
  justify-content: center;
  margin-bottom: 30px;
  width: 60px;
}
.group-icon svg {
  color: #fff;
  height: 30px;
  width: 30px;
}
.group-category h3 {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.group-companies {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.company-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
}
.company-card:hover {
  transform: translateY(-5px);
}
.company-card h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 15px;
}
.company-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.company-card ul {
  list-style: none;
  padding: 0;
}
.company-card li {
  color: var(--color-text);
  font-size: 0.9rem;
  padding: 8px 0 8px 25px;
  position: relative;
}
.company-card li:before {
  color: var(--color-accent);
  content: "▸";
  left: 0;
  position: absolute;
}
.group-message {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: 80px;
  padding: 60px;
  text-align: center;
}
.group-message h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.group-message p {
  color: var(--color-text);
  line-height: 2;
  margin-bottom: 20px;
}
.access-section {
  background: #fff;
  padding: 80px 0 180px;
}
.access-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}
.access-block,
.access-methods,
.flow-section,
.rclean-section,
.service-area,
.target-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 60px;
}
.service-area {
  padding-bottom: 60px;
}
.access-block h2,
.access-methods h2,
.flow-section h2,
.rclean-section h2,
.service-area h2,
.target-section h2 {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
}
.headquarters-info {
  margin-bottom: 40px;
  text-align: center;
}
.headquarters-info .info-row {
  align-items: baseline;
  display: inline-flex;
  gap: 20px;
  justify-content: center;
}
.headquarters-info .info-label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.headquarters-info .info-value {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.6;
}
.access-map-full {
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 500px;
  margin-bottom: 60px;
  overflow: hidden;
  width: 100%;
}
.access-map-full iframe {
  border: none;
  height: 100%;
  width: 100%;
}
.services-contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
}
.service-contact-card {
  background: var(--color-warm-beige);
  border-radius: 15px;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 0;
  transition: var(--transition);
}
.service-contact-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.service-contact-card h3 {
  color: #fff !important;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  min-height: 3.5em;
  padding: 40px 30px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.service-contact-card:first-child h3 {
  background: linear-gradient(
      135deg,
      rgba(255, 185, 38, 0.1),
      rgba(216, 154, 26, 0.85)
    ),
    url(/img/bg_business.jpg);
  background-position: 50%;
  background-size: cover;
}
.service-contact-card:nth-child(2) h3 {
  background: linear-gradient(
      135deg,
      rgba(126, 200, 80, 0.1),
      rgba(90, 160, 48, 0.85)
    ),
    url(/img/bg_business.jpg);
  background-position: 50%;
  background-size: cover;
}
.service-contact-card:nth-child(3) h3 {
  background: linear-gradient(
      135deg,
      rgba(30, 144, 255, 0.1),
      rgba(21, 101, 192, 0.85)
    ),
    url(/img/bg_business.jpg);
  background-position: 50%;
  background-size: cover;
}
.service-contact-card:first-child .phone-number {
  color: #d89a1a;
}
.service-contact-card:first-child .badge {
  background: #ffb926;
}
.service-contact-card:nth-child(2) .phone-number {
  color: #5aa030;
}
.service-contact-card:nth-child(2) .badge {
  background: #7ec850;
}
.service-contact-card:nth-child(3) .phone-number {
  color: #1565c0;
}
.service-contact-card:nth-child(3) .badge {
  background: #1e90ff;
}
.service-contact-card:nth-child(3) .price-highlight {
  color: #1565c0;
}
#relife-section {
  background: #fffcf5 !important;
}
#relife-section .business-badge {
  background: #ffb926;
}
#relife-section h3 {
  color: var(--color-primary);
}
#relife-section .service-features li:before {
  color: #ffb926;
}
#relife-section .detail-link {
  border-bottom-color: #ffb926;
  color: #d89a1a;
}
#relife-section .detail-link:hover {
  border-bottom-color: #d89a1a;
}
#relife-section .contact-box {
  background: linear-gradient(135deg, #d89a1a, #ffb926);
}
#relife-section .contact-box .detail-link {
  color: #fff !important;
}
#relife-section .contact-box:hover {
  background: linear-gradient(135deg, #c88a10, #f0aa20);
  box-shadow: 0 5px 20px rgba(216, 154, 26, 0.3);
}
#leaf-section {
  background: #fafdf8 !important;
}
#leaf-section .business-badge {
  background: #7ec850;
}
#leaf-section h3 {
  color: var(--color-primary);
}
#leaf-section .service-features li:before {
  color: #7ec850;
}
#leaf-section .detail-link {
  border-bottom-color: #7ec850;
  color: #5aa030;
}
#leaf-section .detail-link:hover {
  border-bottom-color: #5aa030;
}
#leaf-section .contact-box {
  background: linear-gradient(135deg, #5aa030, #7ec850);
}
#leaf-section .contact-box .detail-link {
  color: #fff !important;
}
#leaf-section .contact-box:hover {
  background: linear-gradient(135deg, #4a9020, #6eb840);
  box-shadow: 0 5px 20px rgba(90, 160, 48, 0.3);
}
#rclean-section {
  background: #fafcff !important;
}
#rclean-section .business-badge {
  background: #1e90ff;
}
#rclean-section h3 {
  color: var(--color-primary);
}
#rclean-section .service-features li:before {
  color: #1e90ff;
}
#rclean-section .detail-link {
  border-bottom-color: #1e90ff;
  color: #1565c0;
}
#rclean-section .detail-link:hover {
  border-bottom-color: #1565c0;
}
#rclean-section .contact-box {
  background: linear-gradient(135deg, #1565c0, #1e90ff);
}
#rclean-section .contact-box .detail-link {
  color: #fff !important;
}
#rclean-section .contact-box:hover {
  background: linear-gradient(135deg, #0d55b0, #1080ef);
  box-shadow: 0 5px 20px rgba(21, 101, 192, 0.3);
}
.flow-section h2 {
  border-bottom: 3px solid #7ec850;
  color: var(--color-primary);
}
.flow-section .step-number {
  background: #7ec850;
}
.flow-section .step-content h3 {
  color: var(--color-primary);
}
.flow-section .step-content strong {
  color: #5aa030;
}
.flow-section .flow-arrow {
  color: #7ec850;
}
.target-section h2 {
  border-bottom: 3px solid #ffb926;
}
.target-section .target-category h3,
.target-section h2 {
  color: var(--color-primary);
}
.target-section .target-category li:before {
  color: #ffb926;
}
.target-section .support-note {
  background: #fffcf5;
}
.target-section .support-note h3 {
  color: var(--color-primary);
}
.target-section .highlight-text {
  color: #d89a1a;
}
.rclean-section h2 {
  border-bottom: 3px solid #1e90ff;
}
.rclean-section .rclean-category h3,
.rclean-section h2 {
  color: var(--color-primary);
}
.rclean-section .rclean-category li:before {
  color: #1e90ff;
}
.rclean-section .rclean-note {
  background: #fafcff;
}
.rclean-section .rclean-note h3 {
  color: var(--color-primary);
}
.rclean-section .highlight-text {
  color: #1565c0;
}
.service-contact-card dl {
  margin: 0;
  padding: 30px;
}
.service-contact-card dt {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 15px;
}
.service-contact-card dt:first-child {
  margin-top: 0;
}
.service-contact-card dd {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 15px;
}
.service-contact-card dd:last-child {
  margin-bottom: 0;
}
.service-contact-card .phone-number {
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 700;
}
.service-contact-card .price-highlight {
  color: var(--color-accent-dark);
  font-size: 1.3rem;
  font-weight: 700;
}
.service-contact-card .badge {
  background: var(--color-accent);
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-size: 0.8rem;
  margin-top: 5px;
  padding: 4px 12px;
}
.service-contact-card small {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.flow-container {
  align-items: stretch;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 40px;
}
.flow-step {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.flow-arrow,
.step-number {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 50px;
}
.step-number {
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  margin-bottom: 15px;
  width: 60px;
}
.step-content h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.step-content strong {
  color: var(--color-accent-dark);
  font-size: 1.1rem;
}
.flow-arrow {
  align-self: center;
  animation: arrowPulse 2s infinite;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 30px;
}
.rclean-grid,
.target-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 40px;
}
.rclean-category,
.target-category {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 30px;
}
.rclean-category h3,
.target-category h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.rclean-category ul,
.target-category ul {
  list-style: none;
  padding: 0;
}
.rclean-category li,
.target-category li {
  color: var(--color-text);
  line-height: 1.6;
  padding: 8px 0 8px 25px;
  position: relative;
}
.rclean-category li:before,
.target-category li:before {
  color: var(--color-accent);
  content: "・";
  font-weight: 700;
  left: 5px;
  position: absolute;
}
.rclean-note,
.support-note {
  background: var(--color-warm-beige);
  border-radius: 15px;
  margin-top: 40px;
  padding: 40px;
}
.rclean-note h3,
.support-note h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.rclean-note p,
.support-note p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.highlight-text,
.rclean-note .highlight-text {
  background: #fff;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 600;
  padding: 20px;
}
.methods-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.method-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
}
.method-card h3 {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.method-card ul {
  list-style: none;
  padding: 0;
}
.method-card li {
  color: var(--color-text);
  padding: 10px 0 10px 25px;
  position: relative;
}
.method-card li:before {
  color: var(--color-accent);
  content: "●";
  left: 0;
  position: absolute;
}
.area-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 40px;
}
.area-item {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}
.area-item strong {
  color: var(--color-primary);
  display: block;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.area-item p {
  color: var(--color-text);
  line-height: 1.8;
}
.area-notes {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}
.area-notes p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.area-notes p:last-child {
  margin-bottom: 0;
}
.contact-access {
  background: #fff;
  padding: var(--spacing-3xl) 0;
}
.service-area:last-child {
  margin-bottom: 0;
}
.contact-access-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
}
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.info-card h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.info-item {
  margin-bottom: 25px;
}
.phone-grid {
  display: grid;
  gap: 20px;
}
.phone-box {
  align-items: center;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
}
.service-name {
  color: var(--color-text-muted);
  font-weight: 500;
}
.phone {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}
.map-button-area {
  margin-top: 50px;
  text-align: center;
}
.map-button {
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 18px 50px;
  transition: var(--transition);
}
.map-button:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.footer {
  background: linear-gradient(135deg, #720a13, #a0141f);
  color: #fff;
  margin-top: var(--spacing-3xl);
  padding: 60px 0 0;
}
.footer-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--spacing-lg);
}
.footer-content {
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  display: grid;
  gap: 60px;
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 50px;
}
.footer-section h3 {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-about .footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  height: 40px;
  opacity: 0.95;
  width: auto;
}
.footer-description {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.footer-contact {
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-address,
.footer-phone {
  margin: 8px 0;
}
.footer-company ul,
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-company li,
.footer-links li {
  margin-bottom: 12px;
}
.footer-company a,
.footer-links a {
  color: hsla(0, 0%, 100%, 0.7);
  display: inline-block;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-company a:hover,
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-bottom {
  padding: 25px 0;
  text-align: center;
}
.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-company a,
  .footer-links a {
    font-size: 1.05rem;
  }
  .footer-bottom p.copyright-text {
    font-size: 0.75rem !important;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOutLater {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes arrowPulse {
  0%,
  to {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes heroTextGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px hsla(0, 0%, 100%, 0.2);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px hsla(0, 0%, 100%, 0.4),
      0 0 30px rgba(255, 215, 0, 0.2);
  }
}
@media (min-width: 769px) {
  .hero h1 span:hover {
    color: gold;
    transform: translateY(-5px) scale(1.1);
  }
}
@media (max-width: 968px) {
  .flow-steps,
  .service-categories,
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  .flow-step:after {
    display: none;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .service-info {
    position: static;
  }
  .service-image-area {
    height: 300px;
  }
  .services-contact-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .access-map-full {
    height: 400px;
  }
  .flow-container {
    flex-direction: column;
    gap: 30px;
  }
  .flow-arrow {
    margin: -10px 0;
    transform: rotate(90deg);
  }
  @keyframes arrowPulse {
    0%,
    to {
      transform: translateY(0) rotate(90deg);
    }
    50% {
      transform: translateY(5px) rotate(90deg);
    }
  }
  .target-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2.1rem !important;
  }
  h3 {
    font-size: 1.8rem !important;
  }
  h4 {
    font-size: 1.5rem !important;
  }
  li,
  p,
  td {
    font-size: 1.3rem !important;
    line-height: 1.8 !important;
  }
  .nav-menu {
    display: none;
  }
  .nav-menu li a {
    font-size: 1.3rem !important;
  }
  .hero-content {
    bottom: 50%;
    left: 20px;
    max-width: 100%;
    right: 20px;
    text-align: center;
    transform: translateY(50%);
  }
  .hero-video {
    object-fit: cover;
    object-position: center top;
  }
  .hero-title {
    font-size: 1.5rem !important;
    line-height: 1.4;
    white-space: normal;
  }
  .btn,
  .button,
  a.btn,
  a.button {
    font-size: 1.3rem !important;
  }
  .phone-large,
  .phone-number {
    font-size: 1.9rem !important;
    font-weight: 700;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    letter-spacing: 0.05em;
  }
  .page-hero {
    background-attachment: scroll;
    padding: 120px 0 60px;
  }
  .page-hero h1 {
    font-size: 2.3rem;
  }
  header {
    top: 10px;
    width: calc(100% - 20px);
  }
  nav {
    padding: 0 20px;
  }
  .logo {
    max-width: 200px;
  }
  .business-item,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .business-item {
    gap: 30px;
  }
  .business-item:nth-child(2n) .business-image,
  .business-item:nth-child(2n) .business-text {
    order: unset;
  }
  .philosophy {
    overflow: visible !important;
    padding: 0 !important;
  }
  .philosophy-content {
    grid-template-columns: 1fr;
    margin: 0 !important;
    padding: 0 !important;
  }
  .philosophy-image {
    background: transparent !important;
    box-shadow: none !important;
    left: 0 !important;
    margin: 0 0 30px !important;
    position: relative !important;
    right: 0 !important;
  }
  .philosophy-image,
  .philosophy-image img {
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
  }
  .philosophy-image img {
    display: block !important;
    height: auto !important;
    margin: 0 !important;
    max-width: 100vw !important;
  }
  .philosophy-text {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 20px !important;
  }
  #leaf,
  #rclean,
  #relife,
  .service-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }
  .service-section .service-content-grid,
  .service-section .service-header,
  .service-section .service-info,
  .service-section .service-main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-section .service-image-area {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
  .service-section .service-image-area img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  .service-categories {
    margin: 0 !important;
    padding: 0 5px !important;
    width: 100% !important;
  }
  .service-categories .category-card {
    margin: 0 0 10px !important;
    padding: 15px 10px !important;
    width: 100% !important;
  }
  .access-methods,
  .area-item,
  .area-notes,
  .benefit-message,
  .category-card,
  .company-history,
  .company-info-card,
  .company-message,
  .company-philosophy,
  .contact-info-box,
  .feature-box,
  .flow-section,
  .flow-steps,
  .info-box,
  .method-card,
  .other-services-box,
  .philosophy-item,
  .philosophy-items,
  .price-info-box,
  .rclean-category,
  .rclean-note,
  .rclean-section,
  .service-area,
  .service-info,
  .support-message,
  .support-note,
  .target-category,
  .target-grid,
  .target-section {
    margin: 0 5px 10px !important;
    max-width: none !important;
    padding: 15px 10px !important;
    width: calc(100% - 10px) !important;
  }
  .area-grid,
  .methods-grid,
  .philosophy-items,
  .rclean-grid,
  .target-grid {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .area-item,
  .method-card,
  .philosophy-item,
  .rclean-category,
  .target-category {
    display: block !important;
    margin: 0 0 8px !important;
    padding: 15px 10px !important;
    width: 100% !important;
  }
  .area-grid,
  .company-table,
  .history-table,
  .menu-grid,
  .methods-grid,
  .rclean-grid,
  .target-grid {
    margin: 0 !important;
    padding: 0 10px !important;
    width: 100% !important;
  }
  .set-plans-grid {
    gap: 20px !important;
    grid-template-columns: 1fr !important;
  }
  .set-plan-card {
    border-radius: 15px !important;
    padding: 20px 15px !important;
  }
  .set-plan-badge {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
    padding: 8px 15px !important;
  }
  .set-plan-images {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 12px !important;
  }
  .set-plan-connector {
    font-size: 1.2rem !important;
    margin: 0;
    transform: rotate(90deg);
  }
  .set-plan-image-item img {
    height: 140px !important;
  }
  .set-plan-image-item .image-label {
    font-size: 0.9rem !important;
    margin-top: 6px !important;
  }
  .set-plan-price-box {
    font-size: 1.5rem !important;
    padding: 12px 15px !important;
  }
  .menu-grid {
    gap: 20px !important;
    grid-template-columns: 1fr !important;
  }
  .menu-card-image-wrapper {
    height: 200px !important;
  }
  .price-amount {
    font-size: 1.6rem !important;
  }
  .individual-menu-title,
  .set-plans-title {
    font-size: 1.4rem !important;
  }
  .company-table td,
  .company-table th {
    display: block;
    padding: 15px;
    width: 100%;
  }
  .company-table th {
    background: var(--color-warm-beige);
    border-bottom: none;
    margin-bottom: 0;
  }
  .company-table td {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 30px;
  }
  .company-table tr:last-child td {
    border-bottom: none;
  }
  .history-table td,
  .history-table th {
    display: block;
    padding: 15px;
    width: 100%;
  }
  .history-table th {
    background: var(--color-warm-beige);
    border-radius: 5px 5px 0 0;
    padding: 10px 15px;
  }
  .history-table td {
    padding-bottom: 30px;
  }
  .section-inner {
    margin: 0 !important;
    padding: 0 15px !important;
    width: 100% !important;
  }
  .business-conclusion {
    padding: 60px 0;
  }
  .business-conclusion h2 {
    font-size: 1.5rem;
    padding: 0 20px;
  }
  .business-conclusion p {
    font-size: 1rem;
    padding: 0 20px;
  }
  .business-intro-top {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .business-conclusion,
  .business-detail,
  .business-intro-top {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .business-conclusion .section-inner,
  .business-detail .section-inner,
  .business-intro-top .section-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact-access-grid {
    grid-template-columns: 1fr;
  }
  .signature {
    margin-top: 40px;
    text-align: center;
  }
  .group-category {
    padding: 30px 20px;
  }
  .group-companies {
    grid-template-columns: 1fr;
  }
  .group-intro h2 {
    font-size: 1.5rem;
  }
  .business-text {
    padding: 40px 30px;
  }
  .footer-content {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 40px 0 0;
  }
}
@media (max-width: 640px) {
  .headquarters-info .info-row {
    flex-direction: column;
    gap: 5px;
    text-align: left;
  }
  .access-map-full {
    height: 350px;
    margin-bottom: 40px;
  }
  .service-contact-card h3 {
    font-size: 1rem;
    min-height: auto;
  }
  .service-contact-card .phone-number {
    font-size: 1.2rem;
  }
  .service-image-area {
    height: 250px;
  }
  .service-header {
    padding: 40px 30px;
  }
  .service-number {
    font-size: 3rem;
    right: 30px;
    top: 20px;
  }
  .service-header h2 {
    font-size: 1.8rem;
  }
  br.mobile-only {
    display: inline;
  }
  .service-content-grid {
    padding: 30px 20px;
  }
  .access-block,
  .access-methods,
  .flow-section,
  .rclean-section,
  .service-area,
  .target-section {
    padding: 40px 30px;
  }
  .access-block h2,
  .access-methods h2,
  .flow-section h2,
  .rclean-section h2,
  .service-area h2,
  .target-section h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .step-number {
    font-size: 1.5rem;
    height: 50px;
    line-height: 50px;
    width: 50px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 2rem !important;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.5rem !important;
  }
  li,
  p,
  td {
    font-size: 1.15rem !important;
  }
  .page-hero {
    padding: 100px 0 50px;
  }
  .page-hero h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .page-hero p {
    font-size: 0.9rem;
  }
  .company-info-section {
    padding: 60px 0;
  }
  .company-history,
  .company-info-card,
  .company-message,
  .company-philosophy {
    border-radius: 15px;
    margin-bottom: 40px;
    padding: 30px 20px;
  }
  .message-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .philosophy-item {
    padding: 20px;
  }
  .philosophy-item h3 {
    font-size: 1.1rem;
  }
  .signature .name {
    font-size: 1.3rem;
  }
  .access-section {
    padding: 60px 0;
  }
  .access-block,
  .access-methods,
  .flow-section,
  .service-area,
  .target-section {
    border-radius: 15px;
    margin-bottom: 40px;
    padding: 30px 20px;
  }
  .flow-container {
    padding: 0;
  }
  .support-note {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .catchcopy-container {
    position: relative;
    transform: translateY(-100px) !important;
  }
  .business-intro-top .section-inner {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.message-content {
  grid-template-columns: 300px 1fr;
}
.message-photo img {
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .message-content {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .message-photo {
    margin: 0 auto;
    max-width: 250px;
  }
}
.message-content {
  align-items: start;
  display: grid;
  gap: 50px;
  grid-template-columns: 250px 1fr;
}
.message-photo {
  align-items: center;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}
.message-photo img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}
@media (max-width: 768px) {
  .message-content {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .message-photo {
    aspect-ratio: 3/4;
    margin: 0 auto;
    width: 200px;
  }
}
.service-section {
  background: #fff;
  border-radius: 30px !important;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #leaf,
  #rclean,
  #relife,
  .service-section {
    border-radius: 30px !important;
    overflow: hidden !important;
  }
}
#leaf.service-section,
#rclean.service-section {
  border-radius: 30px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  transform: none !important;
}
#leaf .service-header,
#rclean .service-header {
  margin-top: 0 !important;
  padding: 60px !important;
}
@media (max-width: 768px) {
  #leaf.service-section,
  #rclean.service-section {
    background: #fff !important;
    border-radius: 30px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  #leaf .service-header,
  #rclean .service-header {
    padding: 40px 30px !important;
  }
  #rclean {
    background: #fff !important;
    min-height: 100px !important;
  }
  #rclean .service-info,
  #rclean .service-main {
    background: #fff !important;
    color: var(--color-text) !important;
  }
  #rclean h3,
  #rclean h4 {
    color: var(--color-primary) !important;
  }
  #rclean .individual-menu-section,
  #rclean .set-plans-section {
    background: #fff !important;
  }
  .philosophy {
    padding: 40px 0 !important;
  }
  .philosophy-content {
    gap: 20px !important;
  }
  .philosophy-image {
    height: 300px !important;
    margin: 0 0 20px !important;
    width: 100vw !important;
  }
  .philosophy-image img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    width: 100vw !important;
  }
}
@media (max-width: 480px) {
  .philosophy {
    padding: 100px 0 !important;
  }
  .philosophy-content {
    gap: 100px !important;
  }
  .philosophy-image {
    height: 250px !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 768px) {
  .philosophy {
    padding: 40px 0 !important;
  }
  .philosophy-content {
    gap: 20px !important;
  }
  .philosophy-image {
    height: 400px !important;
    margin: 0 0 20px !important;
    width: 100vw !important;
  }
  .philosophy-image img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    width: 100vw !important;
  }
}
@media (max-width: 480px) {
  .philosophy {
    padding: 100px 0 !important;
  }
  .philosophy-content {
    gap: 100px !important;
  }
  .philosophy-image {
    height: 320px !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 768px) {
  .philosophy {
    padding: 100px 0 !important;
  }
  .philosophy-content {
    gap: 20px !important;
  }
  .philosophy-image {
    height: 400px !important;
    margin: 0 0 20px !important;
    width: 100vw !important;
  }
  .philosophy-image img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    width: 100vw !important;
  }
}
@media (max-width: 480px) {
  .philosophy {
    padding: 100px 0 !important;
  }
  .philosophy-content {
    gap: 100px !important;
  }
  .philosophy-image {
    height: 450px !important;
    margin-bottom: 15px !important;
  }
}
body,
html {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .philosophy-image,
  .philosophy-image img {
    max-width: 100%;
    width: 100%;
  }
}
.hero-company {
  max-width: 100%;
  overflow: hidden;
}
.company-table {
  max-width: 100%;
  table-layout: fixed;
  width: 100%;
}
.company-table td,
.company-table th {
  overflow-wrap: break-word;
  word-break: break-word;
}
.company-history,
.company-info-card,
.company-info-section,
.company-message,
.company-philosophy {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company-info-section .section-inner {
    max-width: 100%;
    padding: 0 10px;
  }
}
.anchor {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}
.contact-box-link {
  display: inline-block;
  text-decoration: none;
}
.contact-box {
  background: linear-gradient(135deg, #b91220, #dd5e69);
  border-radius: 10px;
  display: inline-block;
  margin-top: 30px;
  padding: 0;
  transition: all 0.3s ease;
}
.contact-box:hover {
  background: linear-gradient(135deg, #a01020, #cd4e59);
  box-shadow: 0 5px 20px rgba(185, 18, 32, 0.3);
  transform: translateY(-3px);
}
.contact-box .detail-link {
  color: #fff;
  display: block;
  font-weight: 600;
  margin: 0;
  padding: 20px 40px;
}
.contact-box .detail-link,
.contact-box .detail-link:hover {
  border: none;
  text-decoration: none;
}
.business-icon-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto 80px;
  max-width: 1400px;
  padding: 0 20px;
}
.icon-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(21, 67, 136, 0.08);
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}
.icon-card:hover {
  box-shadow: 0 20px 50px rgba(21, 67, 136, 0.15);
  transform: translateY(-10px);
}
.icon-image-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.icon-image-wrapper img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}
.icon-card:hover .icon-image-wrapper img {
  transform: scale(1.1);
}
.icon-card .business-name {
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 20px 0 8px;
  padding: 0 30px;
}
.icon-card h4 {
  margin: 8px 0 12px;
}
.icon-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0 0 30px;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .business-icon-cards {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
  .icon-card {
    margin: 0 auto;
    max-width: 500px;
  }
  .icon-image-wrapper {
    height: 220px;
  }
  .icon-card h4 {
    font-size: 1.4rem;
    margin: 25px 0 12px;
  }
  .icon-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}
.icon-card h4 {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 25px 0 12px;
  padding: 0 30px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .icon-card h4 {
    font-size: 1.3rem;
  }
}
@media (max-width: 1024px) {
  .icon-card h4 {
    font-size: 1.2rem;
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .icon-card h4 {
    font-size: 1.4rem;
    margin: 25px 0 12px;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .business-icon-cards {
    gap: 25px;
    max-width: 100%;
    padding: 0 20px;
  }
  .icon-image-wrapper {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .business-icon-cards {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
    max-width: calc(100% - 20px);
    padding: 0 10px;
  }
  .icon-card {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .icon-image-wrapper {
    height: 220px;
  }
}
@media (max-width: 480px) {
  .business-icon-cards {
    max-width: calc(100% - 10px);
    padding: 0 5px;
  }
}
a.icon-card {
  color: inherit;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
#leaf-section,
#rclean-section,
#relife-section {
  scroll-margin-top: 80px;
}
.hero-contact {
  background: url(/img/contact_bg.jpg);
  background-position: 50%;
  background-size: cover;
}
.contact-form-section {
  padding: var(--spacing-3xl) 0;
}
.contact-intro {
  margin: 0 auto 60px;
  max-width: 800px;
  text-align: center;
}
.contact-intro h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-intro p {
  color: var(--color-text-muted);
  line-height: 1.8;
}
.contact-form-wrapper {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 0 auto 80px;
  max-width: 800px;
  padding: 60px;
}
.contact-form .form-group {
  margin-bottom: 30px;
}
.contact-form label {
  color: var(--color-primary);
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-form .required {
  color: var(--color-accent);
  font-size: 0.85rem;
  margin-left: 5px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 2px solid var(--color-border-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  padding: 15px;
  transition: var(--transition);
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.form-submit {
  margin-top: 40px;
  text-align: center;
}
.form-submit-confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.submit-button {
  background: linear-gradient(135deg, #b91220, #dd5e69);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 60px;
  transition: var(--transition);
}
.submit-button:hover {
  background: linear-gradient(135deg, #a01020, #cd4e59);
  box-shadow: 0 10px 30px rgba(185, 18, 32, 0.3);
  transform: translateY(-3px);
}
.back-button {
  background: linear-gradient(135deg, #b91220, #dd5e69);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 60px;
  transition: var(--transition);
  min-width: calc(4em + 60px * 2);
  text-align: center;
}
.back-button:hover {
  background: linear-gradient(135deg, #a01020, #cd4e59);
  box-shadow: 0 10px 30px rgba(185, 18, 32, 0.3);
  transform: translateY(-3px);
}
.contact-info-section {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
.contact-info-section h3 {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-bottom: 40px;
}
.phone-contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.phone-contact-grid-three {
  grid-template-columns: repeat(3, 1fr);
}
.phone-contact-card {
  background: var(--color-warm-beige);
  border-radius: 15px;
  padding: 40px;
}
.phone-contact-card h4 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.phone-contact-card .phone-number {
  color: var(--color-accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 15px 0;
}
.phone-contact-card .hours {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.confirmation-table dl:not(:first-of-type) {
  margin-top: 30px;
}
.confirmation-table dt {
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-weight: bold;
  border-bottom: solid 1px #a0141f;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .phone-contact-grid,
  .phone-contact-grid-three {
    grid-template-columns: 1fr;
  }
  .form-submit-confirm {
    flex-direction: column;
  }
  .submit-button {
    width: 100%;
  }
  .badge-row {
    gap: 10px;
  }
  .mental-care-badge {
    font-size: 0.7rem;
    height: 85px;
    width: 85px;
  }
}
@media (max-width: 480px) {
  .mental-care-badge {
    font-size: 0.6rem;
    height: 70px;
    width: 70px;
  }
}
body:not(.js-loaded) .fade-in,
body:not(.js-loaded) .fade-in-left,
body:not(.js-loaded) .fade-in-right,
body:not(.js-loaded) .fade-in-scale,
body:not(.js-loaded) .fade-in-stagger {
  opacity: 1 !important;
  transform: none !important;
}
body.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body.js-loaded .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.js-loaded .fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body.js-loaded .fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
body.js-loaded .fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body.js-loaded .fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
body.js-loaded .fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body.js-loaded .fade-in-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
body.js-loaded .fade-in-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
body.js-loaded .fade-in-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.js-loaded section.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
body.js-loaded section.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  height: 24px;
  margin-right: 20px;
  padding: 0;
  position: relative;
  width: 30px;
  z-index: 9999;
}
.hamburger-line {
  background: #333;
  border-radius: 3px;
  height: 3px;
  left: 0;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
}
.hamburger-line:first-child {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active .hamburger-line:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.menu-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 998;
}
.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 10px 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  main {
    padding-top: 60px;
  }
  header nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
  }
  .hamburger {
    display: block;
    order: 2;
  }
  .logo {
    margin: 0;
    order: 1;
  }
  .logo img {
    height: 40px;
    width: auto;
  }
  .nav-menu {
    background: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: block !important;
    height: 100vh;
    list-style: none;
    max-width: 300px;
    overflow-y: auto;
    padding: 80px 20px 20px;
    position: fixed;
    right: -100%;
    top: 0;
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 80%;
    z-index: 999;
  }
  .nav-menu.is-active {
    right: 0;
  }
  .nav-menu li {
    border-bottom: 1px solid #eee;
    display: block;
    margin: 0;
  }
  .nav-menu li a {
    color: #333;
    display: block;
    font-size: 16px;
    padding: 20px 10px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-menu li a:hover {
    background: #f5f5f5;
  }
  .nav-menu li:first-child {
    border-top: 1px solid #eee;
  }
}
@media (min-width: 769px) {
  .hamburger,
  .menu-overlay {
    display: none !important;
  }
  .nav-menu {
    background: transparent !important;
    box-shadow: none !important;
    display: flex !important;
    height: auto !important;
    padding: 0 !important;
    position: static !important;
    right: auto !important;
    transform: none !important;
    width: auto !important;
  }
}
@media (max-width: 768px) {
  header nav {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0 20px;
    position: relative;
    width: 100vw !important;
  }
  header,
  header nav {
    max-width: 100% !important;
  }
  header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 10px 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100% !important;
    z-index: 999;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  background: #fff;
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}
.hero,
.page-hero {
  position: relative;
  z-index: 1;
}
.parallax-cover-section {
  border-radius: 30px 30px 0 0 !important;
  box-shadow: none;
  margin-top: -10vh !important;
  min-height: 70vh;
  padding-top: 15vh !important;
  position: relative !important;
  transform: translateY(300px);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.8s ease;
  will-change: transform;
}
#business-intro.parallax-cover-section,
.contact-access.parallax-cover-section,
.philosophy.parallax-cover-section {
  min-height: 100vh;
}
#leaf.parallax-cover-section,
#rclean.parallax-cover-section {
  margin-top: -15vh !important;
  padding-top: 20vh !important;
  z-index: auto !important;
}
#leaf.parallax-cover-section {
  z-index: 15 !important;
}
#rclean.parallax-cover-section {
  z-index: 20 !important;
}
.business-detail.parallax-cover-section {
  padding-bottom: 100px;
}
.business-conclusion.parallax-cover-section {
  z-index: 25 !important;
}
.company-history.parallax-cover-section,
.company-info-section.parallax-cover-section,
.company-message.parallax-cover-section,
.company-philosophy.parallax-cover-section {
  margin-bottom: -10vh;
  padding-top: 20vh !important;
}
.company-info-section {
  z-index: 15 !important;
}
.company-message {
  z-index: 20 !important;
}
.company-philosophy {
  z-index: 25 !important;
}
.company-history {
  z-index: 30 !important;
}
.access-methods.parallax-cover-section,
.flow-section.parallax-cover-section,
.rclean-section.parallax-cover-section,
.target-section.parallax-cover-section {
  margin-bottom: -10vh;
  padding-top: 15vh !important;
}
.service-area.parallax-cover-section {
  margin-bottom: 0 !important;
  padding-top: 15vh !important;
}
.flow-section {
  z-index: 25 !important;
}
.target-section {
  z-index: 30 !important;
}
.rclean-section {
  z-index: 35 !important;
}
.access-methods {
  z-index: 40 !important;
}
.service-area {
  z-index: 45 !important;
}
.access-section.parallax-cover-section {
  padding-top: 20vh !important;
}
.philosophy {
  z-index: 10 !important;
}
#business-intro,
.business-intro-top {
  z-index: 20 !important;
}
.business-detail {
  z-index: 25 !important;
}
.business-conclusion,
.contact-access {
  z-index: 30 !important;
}
.access-section,
.company-info-section {
  z-index: 20 !important;
}
.parallax-cover-section:before {
  content: none;
}
.parallax-cover-section {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 768px) {
  .parallax-cover-section,
  .parallax-section-mobile {
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    margin-top: 0 !important;
    min-height: auto !important;
    padding-top: 60px !important;
    position: relative !important;
    transform: none !important;
    transition: none !important;
    z-index: auto !important;
  }
  .access-methods,
  .flow-section,
  .rclean-section,
  .service-area,
  .target-section {
    display: block !important;
    margin-top: 40px !important;
    opacity: 1 !important;
    padding: 20px !important;
    position: relative !important;
    transform: none !important;
  }
}
