
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    margin-right: 2rem;
}

.nav-logo a {
    text-decoration: none;
    color: #333;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #dc2626;
    display: block;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #dc2626;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: parallax 20s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.1) translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 900;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-title-sub {
    font-size: 1.5rem;
    font-weight: 400;
    display: block;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-description {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Video responsive styles */
@media (max-width: 768px) {
    .hero-bg-video {
        transform: scale(1.1);
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        margin-right: 1rem;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-line {
    width: 2px;
    height: 30px;
    background-color: white;
    margin: 0.5rem auto;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; }
    50% { height: 30px; }
    100% { height: 0; }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #dc2626;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: #b91c1c;
}

/* Features Section */
.features {
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Strengths Section */
.strengths-content {
    max-width: 800px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
}

.strength-item:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.strength-number {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    min-width: 80px;
}

.strength-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.strength-description {
    color: #666;
    line-height: 1.6;
}

/* News Section */
.news {
    background-color: #f9fafb;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    min-width: 100px;
}

.news-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.news-category {
    padding: 0.3rem 0.8rem;
    background-color: #dc2626;
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: #d1d5db;
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-contact {
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Company Info */
.company-info {
    padding: 5rem 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

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

.company-table th,
.company-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.company-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #333;
    width: 30%;
}

.company-image {
    text-align: center;
}

.company-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Features Detail */
.features-detail {
    background-color: #f9fafb;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-detail-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-detail-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.feature-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-detail-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-detail-description {
    color: #666;
    line-height: 1.6;
}

/* Offices */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.office-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.office-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.office-address {
    color: #333;
    margin-bottom: 0.5rem;
}

.office-tel {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.office-description {
    color: #666;
    font-style: italic;
}

/* Organization */
.organization {
    background-color: #f9fafb;
}

.organization-main {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.organization-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.organization-description {
    color: #666;
}

.subsidiaries-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.subsidiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.subsidiary-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.subsidiary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.subsidiary-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.subsidiary-location {
    color: #666;
    margin-bottom: 0.5rem;
}

.subsidiary-description {
    color: #666;
    margin-bottom: 0.5rem;
}

.subsidiary-note {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Qualifications */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.qualification-category {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.qualification-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-align: center;
}

.qualification-list {
    list-style: none;
}

.qualification-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #333;
    font-weight: 500;
}

.qualification-list li:last-child {
    border-bottom: none;
}

/* SDGs */
.sdgs {
    background-color: #f9fafb;
}

.sdgs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sdgs-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.sdgs-list {
    list-style: none;
}

.sdgs-list li {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.sdgs-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Philosophy Hero */
.philosophy-hero {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.philosophy-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease-out;
}

.philosophy-hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Corporate Philosophy */
.corporate-philosophy {
    padding: 5rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.philosophy-description {
    color: #666;
    line-height: 1.6;
}

/* Credo */
.credo {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.credo-list {
    max-width: 900px;
    margin: 0 auto;
}

.credo-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.credo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.credo-number {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    min-width: 80px;
}

.credo-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.credo-quote {
    font-size: 1.1rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 1rem;
    font-style: italic;
}

.credo-description {
    color: #666;
    line-height: 1.6;
}

/* Message */
.message {
    padding: 5rem 0;
    text-align: center;
}

.message-title {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.message-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.message-image {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.message-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Business Overview */
.business-overview {
    padding: 5rem 0;
}

.business-overview-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Business Categories */
.business-categories {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.business-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.business-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.business-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.business-item-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.business-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.business-item-description {
    color: #666;
    line-height: 1.6;
}

/* Service Flow */
.service-flow {
    padding: 5rem 0;
}

.flow-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flow-tab {
    padding: 1rem 2rem;
    background-color: #f3f4f6;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flow-tab.active {
    background-color: #dc2626;
    color: white;
}

.flow-content {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-panel {
    display: none;
}

.flow-panel.active {
    display: block;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.flow-step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* History Hero */
.history-hero {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.history-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.history-hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.history-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Timeline */
.timeline {
    padding: 5rem 0;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #dc2626;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc2626;
    background-color: white;
    padding: 1rem;
    border: 3px solid #dc2626;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

/* Milestones */
.milestones {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.milestone-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.milestone-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.milestone-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.milestone-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.milestone-description {
    color: #666;
    line-height: 1.6;
}

/* Vision */
.vision {
    padding: 5rem 0;
    text-align: center;
}

.vision-title {
    font-size: 3rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.vision-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.vision-image {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.vision-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* News Filter */
.news-filter {
    padding: 2rem 0;
    background-color: #f9fafb;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #dc2626;
    color: white;
    border-color: #dc2626;
}

/* News List Section */
.news-list-section {
    padding: 5rem 0;
}

.news-articles {
    display: grid;
    gap: 2rem;
}

.news-article {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.news-article.hidden {
    display: none;
}

.news-article-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-article-content {
    flex: 1;
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-article-date {
    font-size: 0.9rem;
    color: #666;
}

.news-article-category {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.news-article-category.business {
    background-color: #3b82f6;
}

.news-article-category.news {
    background-color: #10b981;
}

.news-article-category.csr {
    background-color: #f59e0b;
}

.news-article-category.technology {
    background-color: #8b5cf6;
}

.news-article-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-article-excerpt {
    color: #666;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-method {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-method-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.contact-method-note {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    padding: 5rem 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.required {
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc2626;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #dc2626;
    border-color: #dc2626;
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #333;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Company Contact Info */
.company-contact-info {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.company-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.company-contact-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.company-contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.company-contact-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 0 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.success-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9fafb;
        margin-top: 1rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .company-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .business-item {
        flex-direction: column;
        text-align: center;
    }

    .business-item-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        width: 60px;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .timeline-content {
        margin: 0;
    }

    .history-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .news-article {
        flex-direction: column;
    }

    .news-article-image {
        width: 100%;
        height: 200px;
    }

    .sdgs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .credo-item {
        flex-direction: column;
        text-align: center;
    }

    .credo-number {
        margin-bottom: 1rem;
    }

    .strength-item {
        flex-direction: column;
        text-align: center;
    }

    .strength-number {
        margin-bottom: 1rem;
    }

    .philosophy-hero-title {
        font-size: 1.8rem;
    }

    .message-title,
    .vision-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .flow-tabs {
        flex-direction: column;
        align-items: center;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .features-grid,
    .offices-grid,
    .subsidiaries-grid,
    .milestones-grid,
    .contact-methods,
    .company-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .message-title,
    .vision-title,
    .cta-title {
        font-size: 2rem;
    }

    .philosophy-hero-title {
        font-size: 1.5rem;
    }

    .history-hero-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Recruitment Styles */
.recruitment-hero {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.recruitment-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
    animation: fadeInUp 0.6s ease-out;
}

.recruitment-hero-subtitle {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.recruitment-hero-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.recruitment-strengths {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.strength-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.strength-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
}

.strength-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.strength-description {
    color: #666;
    line-height: 1.6;
}

/* Employee Testimonial */
.employee-testimonial {
    padding: 5rem 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.profile-details {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
}

.testimonial-goal {
    color: #dc2626;
    font-weight: 500;
    font-style: italic;
    margin-top: 1rem;
}

/* Work Environment */
.work-environment {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.environment-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.environment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.environment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.environment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.environment-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.environment-description {
    color: #666;
    line-height: 1.6;
}

/* Recruitment Info */
.recruitment-info {
    padding: 5rem 0;
}

.recruitment-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.recruitment-table th,
.recruitment-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.recruitment-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #333;
    width: 25%;
}

.recruitment-table td {
    color: #666;
}

.recruitment-table tr:last-child th,
.recruitment-table tr:last-child td {
    border-bottom: none;
}

/* Application CTA */
.application-cta {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Action Plan Styles */
.action-plan-overview {
    padding: 5rem 0;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.overview-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.plan-details {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.plan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.plan-info-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1rem;
}

.plan-info-content {
    color: #666;
    line-height: 1.6;
}

.goals-section {
    max-width: 1000px;
    margin: 0 auto;
}

.goals-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
}

.goal-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.goal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.goal-number {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.goal-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.goal-content {
    margin-left: 1rem;
}

.measure-title,
.implementation-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.measure-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.implementation-list {
    list-style: none;
    padding-left: 0;
}

.implementation-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.implementation-list li::before {
    content: '•';
    color: #dc2626;
    position: absolute;
    left: 0;
}

/* Implementation Schedule */
.implementation-schedule {
    padding: 5rem 0;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dc2626;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #dc2626;
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    line-height: 1.6;
}

/* Progress Report */
.progress-report {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.progress-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.progress-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.progress-status {
    margin-bottom: 1rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-active {
    background-color: #10b981;
    color: white;
}

.progress-description {
    color: #666;
    line-height: 1.6;
}

/* Officers Styles */
.officers {
    padding: 5rem 0;
}

.officers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.officer-card {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out;
}

.president-card {
    border-top: 4px solid #dc2626;
}

.officer-image {
    width: 200px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f3f4f6;
    flex-shrink: 0;
}

.officer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.officer-info {
    flex: 1;
}

.officer-position {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.officer-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.officer-name-kana {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.background-title,
.achievements-title,
.focus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.background-content,
.focus-content {
    color: #666;
    line-height: 1.6;
}

.background-content p {
    margin-bottom: 1rem;
}

.achievements-list {
    list-style: none;
    padding-left: 0;
}

.achievements-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.achievements-list li::before {
    content: '•';
    color: #dc2626;
    position: absolute;
    left: 0;
}

/* Management Philosophy */
.management-philosophy {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.philosophy-description {
    color: #666;
    line-height: 1.6;
}

/* Application Form Styles */
.application-form-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.form-intro-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-label.required::after {
    content: ' *';
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.form-file {
    width: 100%;
    padding: 0.75rem;
    border: 2px dashed #e5e7eb;
    border-radius: 5px;
    background-color: #f9fafb;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-file:hover {
    border-color: #dc2626;
}

.form-help {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox:checked + .checkbox-label .checkmark {
    background-color: #dc2626;
    border-color: #dc2626;
}

.form-checkbox:checked + .checkbox-label .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 2rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.success-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .officer-card {
        flex-direction: column;
        text-align: center;
    }
    
    .officer-image {
        width: 150px;
        height: 180px;
        margin: 0 auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-date,
    .timeline-content {
        margin: 0.5rem 0;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .strengths-grid,
    .environment-grid,
    .progress-grid,
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .recruitment-hero-title {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Sitemap Styles */
.sitemap-content {
    padding: 5rem 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.sitemap-section {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.sitemap-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
}

.sitemap-links {
    list-style: none;
    padding-left: 0;
}

.sitemap-links li {
    margin-bottom: 0.8rem;
}

.sitemap-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sitemap-links a:hover {
    color: #dc2626;
    padding-left: 0.5rem;
}
