/* ============================================
   株式会社WAKA - いえサポ
   Modern Corporate Site Stylesheet v2
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1A6BB5;
  --color-primary-light: #3A8AD4;
  --color-primary-dark: #0d3d6e;
  --color-accent: #1A6BB5;
  --color-accent-light: #3A8AD4;
  --color-accent-pale: #B3D4F0;
  --color-white: #ffffff;
  --color-offwhite: #EBF4FF;
  --color-cream: #DCE9F7;
  --color-gray-light: #CFE0F2;
  --color-gray: #7EA8C8;
  --color-text: #0d3d6e;
  --color-text-light: #4a7ea8;
  --color-line: #06C755;
  --font-main: 'Noto Sans JP', sans-serif;
  --shadow-sm: 0 2px 12px rgba(26, 107, 181, 0.06);
  --shadow-md: 0 6px 24px rgba(26, 107, 181, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 107, 181, 0.14);
  --shadow-card: 0 4px 16px rgba(26, 107, 181, 0.07);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

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

.section--cream {
  background: var(--color-cream);
}

.section-title {
  text-align: center;
  margin-bottom: 72px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.4;
}

.section-title .en {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* --- Fade In Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.fade-in-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.fade-in-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

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

/* --- Illustration --- */
.illust {
  display: block;
  max-width: 100%;
  height: auto;
  /* CSS filter to shift unDraw default purple (#6c63ff) toward blue #1A6BB5 */
  filter: hue-rotate(-10deg) saturate(0.7) brightness(0.7);
}

.illust-sm {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.illust-md {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.illust-lg {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.feature-card .illust-sm {
  margin: 0 auto 24px;
}

.step-item .illust-sm {
  flex-shrink: 0;
}

.service-point .illust-md {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(26, 46, 74, 0.08);
  padding: 12px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 60px;
  width: auto;
  transition: filter var(--transition), height var(--transition);
}

.header.scrolled .header-logo-img {
  height: 48px;
}

.header:not(.scrolled) .header-logo-img {
  filter: brightness(0) invert(1);
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
}

.header:not(.scrolled) .nav-desktop a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop .nav-cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-desktop .nav-cta::after {
  display: none;
}

.nav-desktop .nav-cta:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 46, 74, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.header:not(.scrolled) .hamburger span {
  background: var(--color-white);
}

.hamburger.active span {
  background: var(--color-primary) !important;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: 110px 40px 40px;
  transition: right var(--transition);
  z-index: 999;
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-gray-light);
  color: var(--color-text);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-mobile a:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 74, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a2a4a 0%, #0d3d6e 30%, #1A6BB5 60%, #5aa0d6 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 61, 110, 0.6) 0%,
    rgba(13, 61, 110, 0.5) 40%,
    rgba(10, 42, 74, 0.7) 100%
  );
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: 0 32px;
  max-width: 800px;
}

.hero-content .catchcopy {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 0 40px rgba(13, 61, 110, 0.3);
  margin-bottom: 24px;
}

.hero-content .subcopy {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 61, 110, 0.2);
  margin-bottom: 48px;
  line-height: 2;
  opacity: 0.92;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(26, 107, 181, 0.4);
}

.hero-cta:hover {
  background: var(--color-accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(26, 107, 181, 0.5);
}

.hero-tel {
  margin-top: 24px;
}

.hero-tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: opacity var(--transition);
}

.hero-tel a:hover {
  opacity: 0.8;
}

.hero-tel span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-align: center;
  font-weight: 300;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.5);
  margin: 10px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   Features (Top Page)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 52px 36px 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26, 46, 74, 0.04);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--color-offwhite), var(--color-cream));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  padding: 16px;
  font-size: 1.8rem;
}

.feature-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ============================================
   About / Intro
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image .placeholder-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #B3D4F0 0%, #DCE9F7 50%, #EBF4FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--color-gray);
}

.about-text h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 28px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 18px;
  line-height: 2;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 20px;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 46, 74, 0.25);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 20px;
}

.btn-accent:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 107, 181, 0.3);
}

/* ============================================
   Steps / Flow
   ============================================ */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 44px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.cta-btn--line {
  background: var(--color-line);
  color: var(--color-white);
}

.cta-btn--line:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.4);
}

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

.cta-btn--tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

.cta-btn--contact {
  background: var(--color-accent);
  color: var(--color-white);
}

.cta-btn--contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(26, 107, 181, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* SNS Icons */
.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-sns a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-sns a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  font-size: 0.85rem;
  padding: 7px 0;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-nav a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-contact .tel {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.footer-bottom a {
  transition: color var(--transition);
}

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

/* ============================================
   Floating CTA (Bottom Right)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.floating-cta a:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.floating-cta .float-line {
  background: var(--color-line);
}

.floating-cta .float-tel {
  background: var(--color-primary);
}

.floating-cta a svg {
  flex-shrink: 0;
}

/* Hide floating CTA on very small screens, show bottom bar instead */
@media (max-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* Mobile Bottom Bar */
.fixed-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  box-shadow: 0 -2px 24px rgba(26, 46, 74, 0.18);
}

.fixed-cta-mobile a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
}

.fixed-cta-mobile .cta-line {
  background: var(--color-line);
}

.fixed-cta-mobile .cta-tel {
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .fixed-cta-mobile {
    display: flex;
  }
}

/* ============================================
   Page Header (Sub Pages)
   ============================================ */
.page-header {
  padding: 160px 0 72px;
  background: linear-gradient(160deg, var(--color-offwhite) 0%, var(--color-cream) 50%, #c5daf0 100%);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-light), transparent);
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.page-header .en {
  font-size: 0.7rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* ============================================
   Service Detail Pages
   ============================================ */
.service-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-intro p {
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--color-text-light);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.service-point {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(26, 46, 74, 0.04);
}

.service-point:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-point .num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-point h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.service-point p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.9;
}

/* Worry List */
.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 48px auto 0;
}

.worry-item {
  background: var(--color-white);
  border-left: 4px solid var(--color-accent);
  padding: 22px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.worry-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   Company Table
   ============================================ */
.company-table {
  max-width: 800px;
  margin: 0 auto;
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 22px 28px;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: 0.95rem;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  width: 160px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-offwhite);
}

/* reCAPTCHA badge - hide default, show text notice instead */
.grecaptcha-badge {
  visibility: hidden;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.form-group label .required {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.68rem;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(26, 46, 74, 0.08);
}

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

.form-submit {
  text-align: center;
  margin-top: 48px;
}

.form-submit button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 18px 64px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
}

.form-submit button:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 46, 74, 0.25);
}

/* ============================================
   Privacy Policy
   ============================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 48px 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--color-accent);
}

.privacy-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2.1;
  margin-bottom: 18px;
}

.privacy-content ul {
  margin: 12px 0 18px 24px;
}

.privacy-content ul li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2.1;
  position: relative;
  padding-left: 18px;
}

.privacy-content ul li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* ============================================
   Thanks Page
   ============================================ */
.thanks-content {
  text-align: center;
  padding: 140px 32px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thanks-content .icon-check {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
  color: #43a047;
}

.thanks-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.thanks-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 44px;
  line-height: 2.1;
}

/* ============================================
   Map
   ============================================ */
.map-container {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  /* Hide decorative line breaks on mobile for natural text flow */
  br.pc-only {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 120px 0 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content .catchcopy {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
  }

  .hero-content .subcopy {
    font-size: 0.88rem;
    margin-bottom: 28px;
    line-height: 1.8;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 0.88rem;
  }

  .hero-tel a {
    font-size: 1.2rem;
  }

  .hero-tel span {
    font-size: 0.68rem;
  }

  .hero-scroll {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-points {
    grid-template-columns: 1fr;
  }

  .worry-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    margin-bottom: 48px;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .cta-section {
    padding: 72px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .steps-list {
    gap: 20px;
  }

  .step-item {
    gap: 20px;
    padding: 24px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .company-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .page-header {
    padding: 130px 0 48px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  body {
    padding-bottom: 56px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content .catchcopy {
    font-size: 1.7rem;
  }

  .section {
    padding: 56px 0;
  }
}
