/* =====================================================
   THANKS 訪問看護ステーション
   Stylesheet v1.0
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* =====================
   CSS Variables
   ===================== */
:root {
  --primary:        #FF8C00;
  --primary-light:  #FFA726;
  --primary-dark:   #E65100;
  --secondary:      #FFC107;
  --gold:           #FFD700;
  --gradient:       linear-gradient(135deg, #FF8C00 0%, #FFC107 100%);
  --gradient-hover: linear-gradient(135deg, #E65100 0%, #FFB300 100%);

  --bg-warm:    #FFF8E1;
  --bg-light:   #FFFDE7;
  --bg-alt:     #FFF3E0;
  --white:      #FFFFFF;

  --text:       #212121;
  --text-mid:   #555555;
  --text-light: #888888;

  --border:       #FFCC80;
  --shadow:       0 4px 24px rgba(255,140,0,0.12);
  --shadow-hover: 0 8px 32px rgba(255,140,0,0.25);

  --header-height: 70px;
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.3s ease;
}

/* =====================
   Reset & Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul   { list-style: none; }

/* =====================
   Typography
   ===================== */
h1,h2,h3,h4,h5 { line-height: 1.4; font-weight: 700; }

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--primary); }
.section-divider {
  display: block;
  width: 60px; height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 0.8rem auto 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 0.92rem;
}

/* =====================
   Layout
   ===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.bg-warm { background: var(--bg-warm); }
.bg-white { background: var(--white); }

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  gap: 8px;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,140,0,0.4);
}
.btn-primary:hover {
  background: var(--gradient-hover);
  color: var(--white);
  box-shadow: 0 6px 28px rgba(255,140,0,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-orange {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-orange:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* =====================
   Header & Navigation
   ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,140,0,0.1);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(255,140,0,0.15); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-en { font-size: 1.1rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; }
.logo-ja { font-size: 0.58rem; color: var(--text-light); letter-spacing: 0.04em; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 1px; }
.site-nav a {
  padding: 6px 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--primary); background: rgba(255,140,0,0.07); }
.site-nav .nav-recruit {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(255,140,0,0.3);
}
.site-nav .nav-recruit:hover { background: var(--gradient-hover); transform: translateY(-1px); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.header-phone:hover { color: var(--primary); }
.header-sns-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.header-sns-btn:hover { opacity: 0.85; color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px; height: 40px;
  cursor: pointer;
  gap: 6px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height); left: 0; right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  flex-direction: column;
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 28px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,140,0,0.08);
}
.mobile-nav a:hover { color: var(--primary); background: rgba(255,140,0,0.04); }
.mobile-nav .nav-recruit {
  margin: 12px 28px;
  text-align: center;
  background: var(--gradient);
  color: white !important;
  border-radius: 50px;
  border-bottom: none;
  padding: 12px;
}

/* =====================
   Hero Section
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(160deg, rgba(230,81,0,0.82) 0%, rgba(255,140,0,0.72) 50%, rgba(255,193,7,0.62) 100%),
    center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: calc(var(--header-height) + 60px) 24px 100px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
  animation: fadeInUp 0.9s ease-out both;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 6px 22px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.55;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.2);
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.9;
  opacity: 0.96;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem; opacity: 0.75;
  letter-spacing: 0.1em;
  animation: bounce 2.2s ease-in-out infinite;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll-arrow { font-size: 1.2rem; }

/* =====================
   About Preview
   ===================== */
.about-preview .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.55s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-label {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 1rem; letter-spacing: 0.05em;
}
.about-text h2 { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1.55; }
.about-text p { color: var(--text-mid); font-size: 0.93rem; line-height: 2; margin-bottom: 1.4rem; }

/* =====================
   Services Grid (top)
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255,140,0,0.08);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-icon {
  width: 68px; height: 68px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.7rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* =====================
   Staff Preview (top)
   ===================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.staff-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,140,0,0.1);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.staff-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 16px rgba(255,140,0,0.2);
}
.staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-role {
  font-size: 0.68rem; font-weight: 700; color: var(--primary);
  background: rgba(255,140,0,0.1);
  padding: 3px 10px; border-radius: 50px;
  display: inline-block; margin-bottom: 0.4rem; letter-spacing: 0.04em;
}
.staff-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.staff-ruby { font-size: 0.67rem; color: var(--text-light); display: block; margin-bottom: 0.7rem; }
.staff-bio { font-size: 0.78rem; color: var(--text-mid); line-height: 1.7; text-align: left; }

/* =====================
   Recruit Banner
   ===================== */
.recruit-banner {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.recruit-banner h2 { font-size: 2rem; margin-bottom: 0.7rem; }
.recruit-banner p { font-size: 1rem; opacity: 0.92; margin-bottom: 2rem; }

/* =====================
   Contact CTA
   ===================== */
.contact-cta { background: var(--bg-warm); }
.contact-cta-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  text-align: center;
}
.phone-big {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 12px;
}
.phone-big:hover { opacity: 0.8; color: var(--primary); }
.phone-hours { font-size: 0.82rem; color: var(--text-light); margin-top: -10px; }

/* =====================
   Page Hero (inner pages)
   ===================== */
.page-hero {
  background: var(--gradient);
  color: var(--white);
  padding: calc(var(--header-height) + 60px) 24px 56px;
  text-align: center;
}
.page-hero h1 { font-size: 2.1rem; margin-bottom: 0.4rem; }
.page-hero p { font-size: 0.9rem; opacity: 0.88; }
.breadcrumb { font-size: 0.78rem; opacity: 0.68; margin-bottom: 0.7rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: white; }

/* =====================
   About Page
   ===================== */
.msg-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.msg-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.msg-photo img { width: 100%; height: 320px; object-fit: cover; }
.msg-caption { text-align: center; font-size: 0.82rem; color: var(--text-light); margin-top: 10px; }
.role-tag {
  display: inline-block;
  background: var(--bg-alt); color: var(--primary);
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 0.9rem;
}
.msg-quote {
  font-size: 1.25rem; font-weight: 700; color: var(--primary);
  border-left: 4px solid var(--primary);
  padding-left: 16px;
  margin: 1.3rem 0; line-height: 1.65;
}
.msg-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 2.05; margin-bottom: 1rem; }
.msg-sign { text-align: right; font-weight: 700; margin-top: 1.5rem; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 3rem;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px; text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.phil-num { font-size: 2.4rem; font-weight: 700; color: var(--secondary); line-height: 1; margin-bottom: 0.4rem; }
.philosophy-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.7rem; }
.philosophy-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.8; }

.info-table {
  width: 100%; border-collapse: collapse; max-width: 780px; margin: 0 auto;
}
.info-table th, .info-table td {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,140,0,0.14);
  font-size: 0.93rem; text-align: left;
}
.info-table th {
  width: 200px; font-weight: 700; color: var(--primary);
  background: rgba(255,140,0,0.05); white-space: nowrap;
}

/* =====================
   Services Page
   ===================== */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.svc-detail-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  display: flex; gap: 18px; align-items: flex-start;
  transition: var(--transition);
}
.svc-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.svc-d-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.svc-d-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.svc-d-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

.area-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.area-tag {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text-mid); padding: 6px 16px; border-radius: 50px; font-size: 0.83rem;
}

.flow-steps { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; }
.flow-step { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 36px; position: relative; }
.flow-step:last-child { padding-bottom: 0; }
.flow-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 56px; }
.flow-num {
  width: 52px; height: 52px;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem;
}
.flow-line { width: 2px; flex: 1; background: linear-gradient(to bottom, var(--primary), var(--secondary)); margin-top: 8px; min-height: 32px; }
.flow-step:last-child .flow-line { display: none; }
.flow-body { padding-top: 12px; }
.flow-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.flow-body p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; }

/* =====================
   Staff Full Page
   ===================== */
.staff-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.staff-full-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow);
  display: flex; gap: 26px; align-items: flex-start;
  transition: var(--transition);
}
.staff-full-card:hover { box-shadow: var(--shadow-hover); }
.staff-full-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 4px solid white; box-shadow: 0 4px 20px rgba(255,140,0,0.2);
  background: var(--gradient);
}
.staff-full-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sfc-info .role-tag { margin-bottom: 0.5rem; }
.sfc-info h3 { font-size: 1.25rem; margin-bottom: 0.15rem; }
.sfc-ruby { font-size: 0.73rem; color: var(--text-light); display: block; margin-bottom: 0.75rem; }
.sfc-bio { font-size: 0.86rem; color: var(--text-mid); line-height: 1.9; }
.qual-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.qual-tag {
  background: var(--bg-warm); border: 1px solid var(--border);
  color: var(--text-mid); padding: 3px 10px; border-radius: 50px; font-size: 0.73rem;
}

/* =====================
   Recruit Page
   ===================== */
.reasons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.reason-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 26px; text-align: center;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.reason-card::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:var(--gradient); }
.reason-no { font-size: 0.73rem; font-weight: 700; color: var(--primary); letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.reason-emoji { font-size: 2.4rem; margin-bottom: 0.9rem; }
.reason-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.reason-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.8; }

.job-section { margin-bottom: 56px; }
.job-section:last-child { margin-bottom: 0; }
.job-heading {
  font-size: 1.25rem; color: var(--primary);
  padding: 11px 20px; background: rgba(255,140,0,0.07);
  border-radius: 8px; margin-bottom: 18px;
  border-left: 4px solid var(--primary);
}
.job-table { width: 100%; border-collapse: collapse; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.job-table th, .job-table td {
  padding: 15px 20px; text-align: left;
  font-size: 0.88rem; border-bottom: 1px solid rgba(255,140,0,0.1);
}
.job-table th { width: 150px; background: rgba(255,140,0,0.06); font-weight: 700; color: var(--primary); white-space: nowrap; }
.job-table td { color: var(--text-mid); }

.timeline-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width: 780px; margin: 0 auto; }
.tl-item {
  background: var(--white); border-radius: var(--radius);
  padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(255,140,0,0.08);
}
.tl-time { font-size: 1.05rem; font-weight: 700; color: var(--primary); white-space: nowrap; min-width: 58px; }
.tl-body h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.18rem; }
.tl-body p { font-size: 0.78rem; color: var(--text-light); }

.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  position: relative;
}
.process-steps::before {
  content:''; position: absolute;
  top: 34px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: var(--gradient);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 68px; height: 68px;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.05rem;
  margin: 0 auto 11px;
  box-shadow: 0 4px 16px rgba(255,140,0,0.3);
}
.process-step h3 { font-size: 0.92rem; margin-bottom: 0.35rem; }
.process-step p { font-size: 0.78rem; color: var(--text-light); }

.apply-cta { background: var(--gradient); color: white; text-align: center; padding: 80px 24px; }
.apply-cta h2 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.apply-cta p { opacity: 0.9; margin-bottom: 2rem; }

/* =====================
   Contact Page
   ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info h2 { font-size: 1.35rem; margin-bottom: 1.8rem; }
.c-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,140,0,0.14);
}
.c-info-icon {
  width: 42px; height: 42px; background: rgba(255,140,0,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.c-info-body h4 { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 0.25rem; }
.c-info-body a { font-size: 1.08rem; font-weight: 700; color: var(--text); }
.c-info-body a:hover { color: var(--primary); }
.c-info-body p { font-size: 0.83rem; color: var(--text-light); }

.contact-form-wrap h2 { font-size: 1.35rem; margin-bottom: 1.8rem; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.87rem; font-weight: 700; margin-bottom: 7px; }
.form-row .req { color: #e53e3e; font-size: 0.73rem; margin-left: 4px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 15px;
  border: 2px solid rgba(255,140,0,0.2); border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 0.93rem;
  color: var(--text); background: var(--white);
  transition: var(--transition); outline: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gradient); color: white;
  border: none; border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,140,0,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,140,0,0.4); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* =====================
   Footer
   ===================== */
.site-footer { background: #2A1500; color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo-en { color: var(--gold); font-size: 1.25rem; font-weight: 700; display: block; margin-bottom: 0.2rem; }
.footer-logo-ja { color: rgba(255,255,255,0.4); font-size: 0.6rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 1.1rem; }
.footer-sns { display: flex; gap: 10px; }
.footer-sns a {
  width: 36px; height: 36px; background: rgba(255,140,0,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: var(--transition);
}
.footer-sns a:hover { background: var(--primary); color: white; }
.footer-col h4 { color: var(--gold); font-size: 0.83rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center; font-size: 0.76rem; color: rgba(255,255,255,0.35);
}

/* =====================
   Philosophy / MVV
   ===================== */
.philosophy-hero {
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.philosophy-hero .phil-en {
  font-size: 0.78rem; letter-spacing: 0.18em; font-weight: 700;
  opacity: 0.8; margin-bottom: 1.4rem; text-transform: uppercase;
}
.philosophy-hero .phil-ja {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700; line-height: 1.5; margin-bottom: 0.8rem;
}
.philosophy-hero .phil-en-sub {
  font-size: 0.95rem; opacity: 0.85; font-style: italic; line-height: 1.7;
}

/* Mission / Vision */
.mvv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-top: 3rem;
}
.mvv-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.mvv-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--primary); text-transform: uppercase;
  background: rgba(255,140,0,0.08); padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 1rem;
}
.mvv-card h3 {
  font-size: 1.15rem; margin-bottom: 1rem; line-height: 1.55;
  border-bottom: 1px solid rgba(255,140,0,0.15); padding-bottom: 0.8rem;
}
.mvv-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 2; }
.mvv-card .mvv-sub {
  font-size: 0.75rem; color: var(--text-light); font-style: italic;
  margin-bottom: 0.3rem; display: block;
}

/* Values（既存 philosophy-card を拡張） */
.values-subtitle-en {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  color: var(--primary); opacity: 0.7; margin-bottom: 0.3rem; display: block;
}

/* =====================
   Apply Form
   ===================== */
.apply-form {
  max-width: 700px; margin: 3rem auto 0;
  background: #fff; border-radius: var(--radius);
  padding: 40px 36px; box-shadow: var(--shadow);
}
.apply-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.apply-form .form-group { margin-bottom: 20px; }
.apply-form label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 7px;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 8px;
  font-size: 0.9rem; color: var(--text-dark);
  transition: border-color 0.2s;
  background: #fafafa; box-sizing: border-box;
  font-family: inherit;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none; border-color: var(--primary);
  background: #fff; box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}
.apply-form select { appearance: none; cursor: pointer; }
.apply-form textarea { resize: vertical; min-height: 120px; }
.form-required {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 2px 7px; border-radius: 3px; margin-left: 6px;
  vertical-align: middle;
}
.file-upload-area {
  border: 2px dashed #FFB74D; border-radius: 10px;
  padding: 28px 20px; text-align: center; background: #FFFDE7;
  position: relative; cursor: pointer; transition: background 0.2s;
}
.file-upload-area:hover { background: #FFF9C4; }
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; font-size: 0;
}
.file-label { font-size: 0.9rem; font-weight: 600; color: #E65100; margin: 8px 0 4px; }
.file-note { font-size: 0.78rem; color: #999; margin: 0; }
@media (max-width: 600px) {
  .apply-form { padding: 28px 18px; }
  .apply-form-grid { grid-template-columns: 1fr; }
}

/* =====================
   Animations
   ===================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .staff-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .site-nav, .header-right { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .about-preview .inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .staff-grid { grid-template-columns: 1fr; }
  .staff-full-grid { grid-template-columns: 1fr; }
  .staff-full-card { flex-direction: column; align-items: center; text-align: center; }
  .msg-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.65rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* Q&A Accordion */
.qa-section { max-width: 800px; margin: 3rem auto 0; }
.qa-category { margin-bottom: 2.5rem; }
.qa-category-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--primary); text-transform: uppercase;
  background: rgba(255,140,0,0.1); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 0.8rem;
}
details.qa-item { border-bottom: 1px solid rgba(255,140,0,0.15); }
details.qa-item summary {
  padding: 17px 0; cursor: pointer; font-weight: 600;
  font-size: 0.92rem; color: var(--text-dark); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
details.qa-item summary::-webkit-details-marker { display: none; }
details.qa-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--primary); flex-shrink: 0; transition: transform 0.22s;
}
details.qa-item[open] summary::after { transform: rotate(45deg); }
details.qa-item .qa-answer {
  padding: 0 0 20px; font-size: 0.88rem;
  color: var(--text-mid); line-height: 1.9;
}
