/* ============================================
   Chitose Theme v3 - Main CSS
   白×青 デザイン
   ============================================ */

:root {
  --blue:        #4a90d9;
  --blue-dark:   #2e6db4;
  --blue-pale:   #e3f0fc;
  --blue-light:  #7eb8f5;
  --navy:        #2a4e7a;
  --bg:          #ffffff;
  --bg-light:    #f4f7fb;
  --bg-mid:      #e8eef7;
  --text:        #2a3448;
  --text-mid:    #4a5270;
  --text-light:  #8892aa;
  --border:      rgba(26,79,160,0.12);
  --white:       #ffffff;
  --font-serif:  'Noto Serif JP', 'Yu Mincho', serif;
  --font-sans:   'Noto Sans JP', sans-serif;
  --font-latin:  'Inter', sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --max-w:       1200px;
  --section-pad: 120px;
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-weight: 300;
  line-height: 1.8; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== ローダー ===== */
#page-loader {
  position: fixed; inset: 0; background: var(--white); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#page-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.loader-logo {
  width: 96px; height: 96px; object-fit: contain;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.loader-name {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 400;
  letter-spacing: 0.18em; color: var(--navy);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.loader-bar {
  width: 120px; height: 2px; background: var(--bg-mid);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ''; position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%; background: var(--blue);
  animation: slideIn 1s var(--ease-out) 0.6s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { to { left: 0; } }

/* ===== ヘッダー ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 12px 48px;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(26,79,160,0.07);
}
.site-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; letter-spacing: 0.04em; color: var(--navy); }
.logo-mark { width: 44px; height: 44px; background: #111; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.logo-mark-img { width: 32px; height: 32px; object-fit: contain; }
.logo-sub { font-family: var(--font-latin); font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue); display: block; line-height: 1; margin-top: 3px; }

#primary-nav ul { display: flex; gap: 32px; align-items: center; }
#primary-nav a { font-family: var(--font-latin); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); transition: color 0.3s; position: relative; }
#primary-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.3s var(--ease-out); }
#primary-nav a:hover { color: var(--blue); }
#primary-nav a:hover::after { width: 100%; }
.nav-recruit-btn { color: var(--blue) !important; border: 1.5px solid var(--blue) !important; padding: 7px 16px !important; border-radius: 4px !important; transition: background 0.3s !important; }
.nav-recruit-btn::after { display: none !important; }
.nav-recruit-btn:hover { background: var(--blue-pale) !important; }
.nav-contact-btn { background: var(--blue) !important; color: var(--white) !important; padding: 8px 20px !important; border-radius: 4px !important; transition: background 0.3s !important; }
.nav-contact-btn::after { display: none !important; }
.nav-contact-btn:hover { background: var(--blue-dark) !important; }

#menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 1100; }
#menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); transition: transform 0.3s var(--ease-out), opacity 0.3s; transform-origin: center; }
#menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 1050; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; transition: opacity 0.4s;
}
#mobile-menu.open { opacity: 1; }
#mobile-menu a { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--navy); letter-spacing: 0.08em; transition: color 0.3s; }
#mobile-menu a:hover, #mobile-menu .mob-recruit { color: var(--blue); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue-dark) 45%, var(--blue-light) 100%);
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; }
.hero-circle-1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.07); top: -100px; right: -100px; }
.hero-circle-2 { position: absolute; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); bottom: 40px; left: -80px; }
.hero-circle-3 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.03); top: 30%; right: 15%; }
.hero-logo-bg { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: flex-end; pointer-events: none; overflow: hidden; }
.hero-logo-img { width: min(70vh, 600px); height: auto; opacity: 0.07; filter: invert(1) brightness(2); transform: translateX(15%) translateY(5%); flex-shrink: 0; }
.hero-grid { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 72px 72px; }
.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 32px; }
.hero-eyebrow { font-family: var(--font-latin); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 28px; opacity: 0; transform: translateY(16px); animation: heroReveal 1s var(--ease-out) 0.8s forwards; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3.2rem, 9vw, 7.5rem); font-weight: 300; line-height: 1.15; letter-spacing: 0.06em; color: var(--white); opacity: 0; transform: translateY(24px); animation: heroReveal 1.2s var(--ease-out) 1s forwards; }
.hero-title .highlight { color: #7eb8f7; font-style: italic; }
.hero-title .lb { display: block; }
.hero-subtitle { font-size: clamp(0.8rem, 1.4vw, 0.9rem); font-weight: 300; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-top: 32px; opacity: 0; transform: translateY(16px); animation: heroReveal 1s var(--ease-out) 1.3s forwards; }
.hero-scroll-hint { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3; opacity: 0; animation: heroReveal 0.8s var(--ease-out) 2s forwards; }
.hero-scroll-hint span { font-family: var(--font-latin); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite 2.5s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 0.9; } }

/* ===== セクション共通 ===== */
.section { padding: var(--section-pad) 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section-header { margin-bottom: 64px; }
.section-label { font-family: var(--font-latin); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--blue); display: block; flex-shrink: 0; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 300; line-height: 1.3; letter-spacing: 0.04em; color: var(--navy); }
.section-label--light { color: #7eb8f7; }
.section-label--light::before { background: #7eb8f7; }
.section-title--light { color: var(--white); }
.blue-divider { width: 40px; height: 3px; background: var(--blue); border-radius: 2px; margin: 28px 0; }

/* ===== About ===== */
#about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 0.93rem; font-weight: 300; line-height: 2; color: var(--text-mid); margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-values { margin-top: 44px; display: flex; gap: 16px; }
.about-value { flex: 1; padding: 22px 18px; border: 1.5px solid var(--border); border-radius: 8px; text-align: center; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; background: var(--white); }
.about-value:hover { border-color: var(--blue-light); box-shadow: 0 4px 20px rgba(26,79,160,0.1); transform: translateY(-2px); }
.about-value-icon { font-size: 1.4rem; margin-bottom: 10px; color: var(--blue); font-family: var(--font-serif); }
.about-value h4 { font-family: var(--font-serif); font-size: 0.83rem; font-weight: 500; letter-spacing: 0.06em; color: var(--blue-dark); margin-bottom: 6px; }
.about-value p { font-size: 0.73rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.about-image { position: relative; }
.about-image-placeholder { width: 100%; height: 480px; background: var(--white); border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; overflow: hidden; }
.about-logo-img { width: 52%; max-width: 280px; object-fit: contain; opacity: 0.85; z-index: 1; }
.about-image::after { content: ''; position: absolute; bottom: -12px; right: -12px; width: 80%; height: 80%; border: 2px solid var(--blue-pale); border-radius: 4px; z-index: 0; }

/* ===== Services ===== */
#services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); padding: 48px 36px; border-radius: 8px; border: 1.5px solid var(--border); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--blue); transition: width 0.5s var(--ease-out); }
.service-card:hover { border-color: var(--blue-light); box-shadow: 0 8px 40px rgba(26,79,160,0.12); transform: translateY(-4px); }
.service-card:hover::before { width: 100%; }
.service-number { font-family: var(--font-latin); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--blue-light); margin-bottom: 24px; }
.service-icon { width: 44px; height: 44px; margin-bottom: 22px; color: var(--blue); }
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 18px; line-height: 1.4; }
.service-desc { font-size: 0.83rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); }

/* ===== Company ===== */
#company { background: var(--white); }
.company-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.company-lead { font-size: 0.85rem; color: var(--text-mid); font-weight: 300; line-height: 1.9; }
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:first-child { border-top: 1px solid var(--border); }
.company-table th { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; color: var(--blue); padding: 20px 0; text-align: left; width: 120px; vertical-align: top; }
.company-table td { font-size: 0.875rem; font-weight: 300; color: var(--text-mid); padding: 20px 0; line-height: 1.7; }

/* ===== Contact ===== */
.contact-section {
  background: linear-gradient(155deg, var(--navy) 0%, var(--blue-dark) 60%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-lead { font-size: 0.9rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.65); margin-top: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: var(--font-latin); font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.form-label span { color: #7eb8f7; }
.form-input, .form-textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white); font-family: var(--font-sans); font-size: 0.875rem; font-weight: 300; padding: 13px 16px; transition: border-color 0.3s, background 0.3s; outline: none; width: 100%; border-radius: 4px; }
.form-input:focus, .form-textarea:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--white); border: none; color: var(--blue-dark); font-family: var(--font-latin); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 44px; cursor: pointer; align-self: flex-start; border-radius: 4px; transition: background 0.3s, transform 0.2s; }
.btn-submit:hover { background: var(--bg-light); transform: translateY(-1px); }

/* CF7対応 */
.wpcf7-form { display: flex; flex-direction: column; gap: 18px; }
.wpcf7-form p { margin: 0; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: var(--white); font-family: var(--font-sans); font-size: 0.875rem; padding: 13px 16px; outline: none; width: 100%; border-radius: 4px; transition: border-color 0.3s; }
.wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form textarea:focus { border-color: rgba(255,255,255,0.5); }
.wpcf7-form input[type="submit"] { background: var(--white); border: none; color: var(--blue-dark); font-family: var(--font-latin); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 44px; cursor: pointer; border-radius: 4px; transition: background 0.3s; }
.wpcf7-form input[type="submit"]:hover { background: var(--bg-light); }

/* ===== フッター ===== */
#site-footer { background: var(--navy); padding: 40px 0 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--white); letter-spacing: 0.06em; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-family: var(--font-latin); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-nav a:hover { color: #7eb8f5; }
.footer-copyright { font-family: var(--font-latin); font-size: 0.68rem; color: rgba(255,255,255,0.3); }

/* ===== 採用ページ ===== */
.recruit-hero { background: linear-gradient(155deg, var(--navy) 0%, var(--blue-dark) 45%, var(--blue-light) 100%); padding: 140px 48px 100px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 400px; }
.recruit-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 72px 72px; }
.recruit-hero-logo { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 320px; opacity: 0.06; filter: invert(1) brightness(2); pointer-events: none; }
.recruit-hero-content { position: relative; z-index: 1; }
.recruit-hero-label { font-family: var(--font-latin); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; display: block; }
.recruit-hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: var(--white); letter-spacing: 0.06em; line-height: 1.4; margin: 0; }
.recruit-hero-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 20px; font-weight: 300; }
.recruit-message { padding: 80px 48px; background: var(--white); text-align: center; }
.recruit-message-inner { max-width: 700px; margin: 0 auto; }
.recruit-section-label { font-family: var(--font-latin); font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blue); display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.recruit-section-label::before, .recruit-section-label::after { content: ''; width: 28px; height: 2px; background: var(--blue); display: block; }
.recruit-section-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 300; color: var(--navy); margin-bottom: 28px; line-height: 1.5; }
.recruit-message-text { font-size: 0.93rem; color: var(--text-mid); line-height: 2.1; font-weight: 300; }
.recruit-jobs { background: var(--bg-light); padding: 80px 48px; }
.recruit-jobs-inner { max-width: 1100px; margin: 0 auto; }
.recruit-jobs-header { text-align: center; margin-bottom: 48px; }
.engage-wrap { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 32px rgba(26,79,160,0.08); }
.engage-wrap iframe { width: 100%; border: none; display: block; min-height: 900px; }
.engage-link-btn { text-align: center; margin-top: 32px; }
.engage-link-btn a { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); font-family: var(--font-latin); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 36px; border-radius: 4px; transition: background 0.3s, transform 0.2s; }
.engage-link-btn a:hover { background: var(--blue-dark); transform: translateY(-2px); }
.engage-link-btn a svg { width: 14px; height: 14px; }

/* ===== アニメーション ===== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.75s var(--ease-out); }
.fade-in.in-view { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.22s; }
.stagger-3 { transition-delay: 0.34s; }

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  #site-header, #site-header.scrolled { padding: 16px 32px; }
  .section-inner, .footer-inner { padding: 0 32px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-image { order: -1; }
  .about-image-placeholder { height: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .company-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  #primary-nav { display: none; }
  #menu-toggle { display: flex; }
  .section-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .about-values { flex-direction: column; gap: 12px; }
  .footer-inner { padding: 0 24px; }
  .recruit-hero { padding: 120px 24px 80px; }
  .recruit-message, .recruit-jobs { padding: 60px 24px; }
  .recruit-hero-logo { width: 180px; opacity: 0.04; }
}
@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  #site-header { padding: 14px 20px; }
  .section-inner, .footer-inner { padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== 代表挨拶 ===== */
.greeting-section { background: var(--bg-light); }
.greeting-layout { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.greeting-photo-wrap { position: relative; }
.greeting-photo {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 4px; display: block;
}
.greeting-photo-placeholder {
  width: 100%; height: 480px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
}
.greeting-name-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue); color: var(--white);
  padding: 20px 28px; border-radius: 4px;
  box-shadow: 0 8px 32px rgba(26,79,160,0.2);
}
.greeting-position { font-family: var(--font-latin); font-size: 0.65rem; letter-spacing: 0.15em; opacity: 0.8; margin-bottom: 6px; }
.greeting-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; letter-spacing: 0.1em; }
.greeting-body { margin-bottom: 40px; }
.greeting-body p { font-size: 0.93rem; font-weight: 300; line-height: 2.2; color: var(--text-mid); margin-bottom: 28px; }
.greeting-body p:last-child { margin-bottom: 0; }
.greeting-sign { border-top: 1px solid var(--border); padding-top: 24px; text-align: right; }
.greeting-sign-company { font-size: 0.8rem; color: var(--text-light); margin-bottom: 6px; }
.greeting-sign-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--navy); letter-spacing: 0.08em; }

@media (max-width: 1024px) {
  .greeting-layout { grid-template-columns: 1fr; gap: 60px; }
  .greeting-photo { height: 360px; }
  .greeting-name-card { bottom: -16px; right: -8px; padding: 16px 20px; }
}
@media (max-width: 768px) {
  .greeting-photo { height: 280px; }
  .greeting-name-card { position: static; margin-top: 16px; display: inline-block; }
}
