/* 一般社団法人ノーツコンソーシアム - Stylesheet */
:root {
    --primary-red: #e60012;
    --primary-red-dark: #c5000f;
    --dark-gray: #4d4d4d;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #1a1a1a;
    --gradient-red: linear-gradient(135deg, #e60012 0%, #ff4d5a 100%);
    --gradient-dark: linear-gradient(135deg, #2a2a2a 0%, #4d4d4d 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.16);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; font-weight: 400; line-height: 1.8; color: var(--dark-gray); background-color: var(--white); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); text-align: center; margin-bottom: 1rem; }
.section-title span { color: var(--primary-red); }
.section-subtitle { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-red); text-align: center; margin-bottom: 0.5rem; }
.section-description { text-align: center; max-width: 700px; margin: 0 auto 3rem; color: var(--medium-gray); font-size: 1rem; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); box-shadow: var(--shadow-soft); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; }
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu-contact { display: none; }
.nav-link { text-decoration: none; color: var(--dark-gray); font-size: 0.9rem; font-weight: 500; transition: var(--transition-fast); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-red); transition: var(--transition-fast); }
.nav-link:hover::after { width: 100%; }
.nav-cta { background: var(--primary-red); color: var(--white); padding: 0.625rem 1.5rem; border-radius: 50px; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: var(--transition-fast); }
.nav-cta:hover { background: var(--primary-red-dark); transform: translateY(-2px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--dark-gray); transition: var(--transition-fast); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%); overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(circle, rgba(230, 0, 18, 0.03) 0%, transparent 70%); pointer-events: none; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hero-content { animation: fadeInUp 0.8s ease forwards; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary-red); color: var(--white); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; animation: pulse 2s infinite; }
.hero-badge::before { content: '✦'; font-size: 0.7rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.3; margin-bottom: 1.5rem; color: var(--black); }
.hero-title span { color: var(--primary-red); }
.hero-description { font-size: 1.1rem; color: var(--medium-gray); margin-bottom: 2rem; line-height: 2; }
.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; }
.stat-item { text-align: left; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary-red); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--medium-gray); margin-top: 0.25rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: var(--transition-fast); cursor: pointer; border: none; }
.btn-primary { background: var(--primary-red); color: var(--white); box-shadow: 0 4px 20px rgba(230, 0, 18, 0.3); }
.btn-primary:hover { background: var(--primary-red-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(230, 0, 18, 0.4); }
.btn-secondary { background: var(--white); color: var(--dark-gray); border: 2px solid var(--dark-gray); }
.btn-secondary:hover { background: var(--dark-gray); color: var(--white); transform: translateY(-3px); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeIn 1s ease forwards; animation-delay: 0.3s; opacity: 0; }
.hero-image-container { position: relative; width: 100%; max-width: 500px; display: flex; justify-content: center; align-items: center; min-height: 400px; }
.hero-circle { position: absolute; border-radius: 50%; border: 2px solid rgba(230, 0, 18, 0.1); animation: rotate 20s linear infinite; }
.hero-circle-1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-circle-2 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-direction: reverse; animation-duration: 15s; }
.hero-logo-main { position: relative; z-index: 2; width: 220px; height: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1)); }
.floating-card { position: absolute; background: var(--white); padding: 0.875rem 1.1rem; border-radius: 12px; box-shadow: var(--shadow-medium); font-size: 0.8rem; font-weight: 500; z-index: 3; animation: float 3s ease-in-out infinite; white-space: nowrap; }
.floating-card-1 { top: 5%; right: -5%; }
.floating-card-2 { top: 30%; left: -15%; animation-delay: 0.6s; }
.floating-card-3 { bottom: 35%; left: -10%; animation-delay: 1.2s; }
.floating-card-4 { top: 55%; right: -12%; animation-delay: 1.8s; }
.floating-card-5 { bottom: 5%; right: 0%; animation-delay: 2.4s; }
.floating-card-icon { display: inline-block; margin-right: 0.4rem; }

/* Message */
.message { background: var(--light-gray); }
.message-container { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.message-image { text-align: center; }
.message-photo { width: 100%; max-width: 280px; border-radius: 16px; box-shadow: var(--shadow-medium); object-fit: cover; }
.message-name { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; color: var(--black); }
.message-role { font-size: 0.9rem; color: var(--primary-red); font-weight: 500; }
.message-content { padding-top: 1rem; }
.message-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 2rem; color: var(--black); line-height: 1.6; }
.message-text { font-size: 1rem; line-height: 2.2; color: var(--dark-gray); }
.message-text p { margin-bottom: 1.5rem; }

/* Organization */
.organization { background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%); }
.org-relationship { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: stretch; margin-bottom: 4rem; }
.org-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: var(--transition-medium); }
.org-card:hover { box-shadow: var(--shadow-strong); transform: translateY(-5px); }
.org-card-header { padding: 2rem; color: var(--white); }
.org-card-community .org-card-header { background: linear-gradient(135deg, #999 0%, #666 100%); }
.org-card-corporation .org-card-header { background: var(--gradient-red); }
.org-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 0.375rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.org-badge-new { background: #fff; color: var(--primary-red); }
.org-card-header h3 { font-size: 1.5rem; line-height: 1.4; }
.org-card-header h3 small { font-size: 0.9rem; font-weight: 400; opacity: 0.9; }
.org-card-body { padding: 2rem; }
.org-description { color: var(--medium-gray); margin-bottom: 1.5rem; font-size: 0.95rem; }
.org-features { list-style: none; margin-bottom: 1.5rem; }
.org-features li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; font-size: 0.9rem; color: var(--dark-gray); border-bottom: 1px solid rgba(0,0,0,0.05); }
.org-features li:last-child { border-bottom: none; }
.org-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-red); font-weight: 700; }
.org-link { display: inline-flex; align-items: center; color: var(--primary-red); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition-fast); }
.org-link:hover { gap: 0.5rem; }
.org-current { display: block; background: rgba(230,0,18,0.1); color: var(--primary-red); padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; text-align: center; }
.org-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; }
.org-arrow-line { width: 2px; height: 60px; background: linear-gradient(180deg, var(--primary-red) 0%, #999 100%); }
.org-arrow-text { text-align: center; padding: 1rem 0; }
.org-arrow-text span { display: block; font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0; }
.arrow-up { color: var(--primary-red); }
.arrow-down { color: #999; }
.org-evolution { background: var(--white); border-radius: 20px; padding: 3rem; box-shadow: var(--shadow-soft); margin-bottom: 3rem; }
.org-evolution-title { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; color: var(--black); }
.org-evolution-content { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: start; }
.evolution-before, .evolution-after { padding: 1.5rem; border-radius: 12px; }
.evolution-before { background: #f5f5f5; }
.evolution-after { background: rgba(230,0,18,0.05); border: 2px solid var(--primary-red); }
.evolution-before h4, .evolution-after h4 { font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid currentColor; }
.evolution-before h4 { color: #999; border-color: #ddd; }
.evolution-after h4 { color: var(--primary-red); border-color: var(--primary-red); }
.evolution-before h4 small, .evolution-after h4 small { font-size: 0.8rem; font-weight: 400; display: block; margin-top: 0.25rem; }
.evolution-before ul, .evolution-after ul { list-style: none; }
.evolution-before li, .evolution-after li { padding: 0.75rem 0; font-size: 0.9rem; line-height: 1.6; }
.evolution-before li strong, .evolution-after li strong { display: block; margin-bottom: 0.25rem; }
.evolution-arrow { display: flex; align-items: center; justify-content: center; }
.evolution-arrow span { background: var(--gradient-red); color: var(--white); padding: 1.5rem; border-radius: 50%; font-size: 0.85rem; font-weight: 700; text-align: center; line-height: 1.4; }
.org-notice { display: flex; gap: 1.5rem; background: #fff3cd; border: 1px solid #ffc107; border-radius: 12px; padding: 1.5rem 2rem; }
.notice-icon { font-size: 2rem; }
.notice-content h4 { color: #856404; margin-bottom: 0.5rem; }
.notice-content p { color: #856404; font-size: 0.95rem; line-height: 1.8; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.about-card { background: var(--white); padding: 2.5rem 2rem; border-radius: 16px; box-shadow: var(--shadow-soft); text-align: center; transition: var(--transition-medium); border: 1px solid rgba(0, 0, 0, 0.05); }
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.about-icon { width: 70px; height: 70px; background: var(--gradient-red); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; }
.about-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--black); }
.about-card p { font-size: 0.95rem; color: var(--medium-gray); line-height: 1.8; }

/* Services */
.services { background: var(--gradient-dark); color: var(--white); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.services .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.services .section-title { color: var(--white); }
.services .section-description { color: rgba(255, 255, 255, 0.8); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; position: relative; z-index: 1; }
.service-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); padding: 2.5rem; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1); transition: var(--transition-medium); }
.service-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-5px); }
.service-number { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 800; color: var(--primary-red); line-height: 1; margin-bottom: 1rem; opacity: 0.8; }
.service-card h3 { font-size: 1.375rem; margin-bottom: 1rem; color: var(--white); }
.service-card p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { list-style: none; }
.service-features li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-red); font-weight: 700; }

/* Recruitment */
.recruitment { background: var(--white); }
.recruitment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.recruitment-card { background: var(--light-gray); border-radius: 20px; overflow: hidden; transition: var(--transition-medium); }
.recruitment-card:hover { box-shadow: var(--shadow-strong); }
.recruitment-header { background: var(--gradient-red); padding: 2rem; color: var(--white); }
.recruitment-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.recruitment-header p { font-size: 0.9rem; opacity: 0.9; }
.recruitment-body { padding: 2rem; }
.recruitment-body h4 { font-size: 1rem; color: var(--primary-red); margin-bottom: 1rem; }
.recruitment-list { list-style: none; margin-bottom: 1.5rem; }
.recruitment-list li { padding: 0.75rem 0; padding-left: 1.5rem; position: relative; border-bottom: 1px solid rgba(0, 0, 0, 0.05); font-size: 0.95rem; }
.recruitment-list li::before { content: '▸'; position: absolute; left: 0; color: var(--primary-red); }
.recruitment-list li:last-child { border-bottom: none; }
.recruitment-benefits { background: var(--white); padding: 1.5rem; border-radius: 12px; margin-top: 1rem; }
.recruitment-benefits h5 { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 0.75rem; }
.benefit-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.benefit-tag { background: rgba(230, 0, 18, 0.1); color: var(--primary-red); padding: 0.375rem 0.875rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

/* Contact */
.contact { background: var(--light-gray); }
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { padding: 2rem; }
.contact-info h3 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--black); }
.contact-info p { color: var(--medium-gray); margin-bottom: 2rem; line-height: 1.8; }
.contact-details { list-style: none; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.contact-details li:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; background: var(--primary-red); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; }
.contact-text { font-size: 0.95rem; }
.contact-text strong { display: block; color: var(--dark-gray); margin-bottom: 0.25rem; }
.contact-text span { color: var(--medium-gray); }
.contact-form-wrapper { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: var(--shadow-soft); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--black); }
.contact-form > p { color: var(--medium-gray); margin-bottom: 2rem; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row .form-group { margin-bottom: 0; }
.form-label { display: block; font-weight: 500; margin-bottom: 0.5rem; color: var(--black); font-size: 0.95rem; }
.form-label .required { color: var(--primary-red); margin-left: 0.25rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.875rem 1rem; border: 1px solid #e0e0e0; border-radius: 8px; font-size: 1rem; transition: var(--transition-fast); background: var(--white); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-checkbox { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary-red); }
.form-checkbox label { font-size: 0.9rem; color: var(--dark-gray); }
.form-checkbox a { color: var(--primary-red); }
.btn-submit { width: 100%; padding: 1rem; font-size: 1.1rem; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-message { margin-top: 1rem; padding: 1rem; border-radius: 8px; text-align: center; display: none; }
.form-message.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-group { margin-bottom: 1.5rem; }
    .contact-form-wrapper { padding: 1.5rem; }
}
.contact-form > p { color: var(--medium-gray); margin-bottom: 2rem; font-size: 0.9rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--dark-gray); margin-bottom: 0.5rem; }
.form-label .required { color: var(--primary-red); margin-left: 0.25rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 1rem 1.25rem; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 1rem; font-family: inherit; transition: var(--transition-fast); background: var(--white); }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.1); }
.form-textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-checkbox input { width: 20px; height: 20px; accent-color: var(--primary-red); margin-top: 0.125rem; }
.form-checkbox label { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.5; }
.form-checkbox label a { color: var(--primary-red); text-decoration: none; }
.form-checkbox label a:hover { text-decoration: underline; }
.btn-submit { width: 100%; padding: 1.125rem 2rem; font-size: 1rem; }

/* Footer */
.footer { background: var(--black); color: var(--white); padding: 4rem 0 2rem; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-logo-img { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); line-height: 1.8; }
.footer-heading { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.85rem; transition: var(--transition-fast); }
.footer-legal a:hover { color: var(--white); }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.4); } 50% { box-shadow: 0 0 0 10px rgba(230, 0, 18, 0); } }
.fade-in-section { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; margin-bottom: 2rem; }
    .message-container { grid-template-columns: 1fr; text-align: center; }
    .message-image { display: flex; flex-direction: column; align-items: center; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .recruitment-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .org-relationship { grid-template-columns: 1fr; }
    .org-arrow { flex-direction: row; padding: 1.5rem 0; }
    .org-arrow-line { width: 60px; height: 2px; }
    .org-evolution-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .evolution-arrow { padding: 1rem 0; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow-medium); }
    .nav-menu.active { display: flex; }
    .nav-menu-contact { display: block; }
    .nav-menu-contact .nav-link { color: var(--primary-red); font-weight: 600; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero { padding-top: 100px; min-height: auto; padding-bottom: 4rem; }
    .hero-logo-main { width: 160px; }
    .hero-circle-1, .hero-circle-2 { display: none; }
    .floating-card { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    section { padding: 4rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { max-width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-direction: column; gap: 0.5rem; }
    .org-notice { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-description { font-size: 1rem; }
    .btn { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
    .contact-form-wrapper { padding: 1.5rem; }
}

/* Worries Section */
.worries {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.worries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red);
}
.worries-header {
    text-align: center;
    margin-bottom: 3rem;
}
.compass-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
}
.compass-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(230, 0, 18, 0.2));
}
.worries-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.worries-title span {
    color: var(--primary-red);
}
.worries-lead {
    font-size: 1.125rem;
    color: var(--medium-gray);
}
.worries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.worry-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: var(--transition-medium);
    position: relative;
}
.worry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 2px solid var(--primary-red);
    opacity: 0;
    transition: var(--transition-fast);
}
.worry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.worry-card:hover::before {
    opacity: 1;
}
.worry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.worry-text {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
}
.worry-text strong {
    color: var(--primary-red);
    display: block;
    margin-top: 0.25rem;
}
.worries-solution {
    background: var(--gradient-dark);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}
.worries-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 0, 18, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.solution-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
.solution-compass {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}
.solution-compass img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: rotate 20s linear infinite reverse;
}
.solution-text {
    flex: 1;
}
.solution-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}
.solution-text h3 span {
    color: #ff6b6b;
}
.solution-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.solution-text .btn {
    background: var(--primary-red);
    color: var(--white);
}
.solution-text .btn:hover {
    background: #ff4d5a;
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .worries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .worries-grid {
        grid-template-columns: 1fr;
    }
    .solution-content {
        flex-direction: column;
        text-align: center;
    }
    .solution-compass {
        width: 100px;
        height: 100px;
    }
    .solution-compass img {
        width: 60px;
        height: 60px;
    }
    .worries-solution {
        padding: 2rem;
    }
}

/* Why Section */
.why-section {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid #f0f0f0;
}
.why-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.why-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(230, 0, 18, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.why-header h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: var(--black);
}
.why-header h3 span {
    color: var(--primary-red);
}
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.why-background h4,
.why-challenge h4 {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
}
.why-background p {
    color: var(--dark-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.why-background p strong {
    color: var(--primary-red);
}
.voice-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.voice-item {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    position: relative;
    border-left: 3px solid var(--primary-red);
}
.voice-quote {
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
.voice-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    padding-left: 1rem;
    font-style: italic;
}
.voice-item.voice-positive {
    border-left-color: #28a745;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}
.voice-item.voice-positive .voice-icon {
    color: #28a745;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}
.voice-item.voice-positive p {
    padding-left: 0;
    font-style: normal;
    font-weight: 500;
    color: var(--black);
}
.why-conclusion {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(40, 167, 69, 0.08);
    border-radius: 8px;
    color: var(--dark-gray);
    line-height: 1.8;
}
.challenge-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}
.challenge-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.challenge-item strong {
    display: block;
    color: var(--black);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.challenge-item p {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}
.challenge-conclusion {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 1rem;
    background: rgba(230, 0, 18, 0.04);
    border-radius: 8px;
    margin: 0;
}
.why-answer {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.03) 0%, rgba(230, 0, 18, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(230, 0, 18, 0.15);
    margin-top: 3rem;
}
.answer-arrow {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}
.why-answer h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--black);
    margin-bottom: 1rem;
}
.why-answer h4 span {
    color: var(--primary-red);
}
.why-answer p {
    color: var(--dark-gray);
    line-height: 1.9;
    margin: 0 0 0.75rem;
}
.why-answer p strong {
    color: var(--primary-red);
}
.why-answer .answer-sub {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Potential Section */
.potential-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}
.potential-header {
    text-align: center;
    margin-bottom: 2rem;
}
.potential-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.potential-header h3 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: var(--black);
}
.potential-header h3 span {
    color: #2563eb;
}
.potential-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}
.potential-intro p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.9;
}
.potential-intro p strong {
    color: #2563eb;
}
.potential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.potential-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-medium);
}
.potential-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.potential-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.potential-card h4 {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.potential-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 1024px) {
    .potential-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
@media (max-width: 768px) {
    .potential-section {
        padding: 2rem 1.5rem;
    }
    .why-answer {
        padding: 1.5rem;
    }
}
@media (max-width: 1024px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .why-section {
        padding: 2rem 1.5rem;
    }
    .why-answer {
        padding: 1.5rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #c5000f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Only Menu Item */
.nav-mobile-only {
    display: none;
}
@media (max-width: 900px) {
    .nav-mobile-only {
        display: block;
    }
}

/* Hero Title Link */
.hero-title-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}
.hero-title-link:hover {
    opacity: 0.8;
}
.hero-title-link span {
    color: var(--primary-red);
}
