/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    background: rgba(0, 46, 92, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 46, 92, 0.98);
    box-shadow: 0 2px 20px rgba(0, 46, 92, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    width: 200px;
    max-height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #4a90e2;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #002e5c 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 46, 92, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

.btn-primary:hover {
    background: transparent;
    color: #4a90e2;
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: white;
    color: #002e5c;
    border-color: #002e5c;
}

.btn-secondary:hover {
    background: #002e5c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 46, 92, 0.3);
}

.hero-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 640px;
    height: auto;
    aspect-ratio: 640/426;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.3);
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.6s both;
    object-fit: cover;
}

.hero-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-bg-shape::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* セクション共通 */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #002e5c;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #002e5c);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* サービスセクション */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #002e5c);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #002e5c;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* 会社概要セクション */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    opacity: 0;
    transform: translateX(-20px);
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #002e5c;
    font-size: 0.95rem;
}

.info-value {
    color: #666;
    line-height: 1.6;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.stats-container {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 46, 92, 0.08);
    opacity: 0;
    transform: scale(0.9);
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002e5c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    font-size: 1.5rem;
    color: #4a90e2;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ニュースセクション */
.news {
    padding: 100px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #4a90e2;
    opacity: 0;
    transform: translateX(-20px);
}

.news-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.12);
}

.news-item h3 {
    color: #002e5c;
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.news-item p {
    color: #666;
    line-height: 1.6;
}

.news-date {
    color: #4a90e2;
    font-weight: 600;
    font-size: 0.9rem;
}

.news-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 1rem;
}

.news-category.new {
    background: #ff6b6b;
    color: white;
}

.news-category.achievement {
    background: #4ecdc4;
    color: white;
}

.news-category.event {
    background: #45b7d1;
    color: white;
}

.news-category.info {
    background: #96ceb4;
    color: white;
}

/* 採用情報ページ専用スタイル */
.recruit-overview {
    padding: 100px 0;
    background: white;
}

.company-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.value-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    color: #666;
    line-height: 1.6;
}

.job-positions {
    padding: 100px 0;
    background: #f8fafc;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.position-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.position-header {
    background: linear-gradient(135deg, #002e5c, #4a90e2);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.position-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.position-icon svg {
    width: 24px;
    height: 24px;
}

.position-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.position-details {
    padding: 2rem;
}

.position-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-requirements h4 {
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.position-requirements ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.position-requirements li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.position-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.benefit-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-conditions {
    padding: 100px 0;
    background: white;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.condition-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.condition-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.condition-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.condition-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.condition-card h3 {
    color: #002e5c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.main-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #002e5c;
    margin-bottom: 0.5rem;
}

.sub-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.application-process {
    padding: 100px 0;
    background: #f8fafc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.08);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #002e5c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.recruit-cta {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.recruit-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #002e5c;
}

.recruit-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #666;
}

/* お問い合わせセクション */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.contact-info.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.contact-info h3 {
    color: #002e5c;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #4a90e2;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    color: #666;
    line-height: 1.6;
}

.contact-text strong {
    color: #002e5c;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    border: 2px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
}

.contact-form.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.2s;
}

.contact-form h3 {
    color: #002e5c;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #002e5c;
    font-weight: 500;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* フッター */
footer {
    background: #002e5c;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #4a90e2;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4a90e2;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a4a7a;
    color: #ccc;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 46, 92, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .position-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .recruit-cta h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* サービス詳細ページ用スタイル */
.service-hero {
    background: linear-gradient(135deg, #002e5c 0%, #4a90e2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.service-overview {
    padding: 100px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #002e5c;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 90%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 46, 92, 0.1);
}

.image-placeholder svg {
    width: 90%;
    height: 90%;
}

.service-details {
    padding: 100px 0;
    background: #f8fafc;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    border-left: 4px solid #4a90e2;
    opacity: 0;
    transform: translateY(20px);
}

.detail-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.detail-icon svg {
    width: 35px;
    height: 35px;
}

.detail-card h3 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.detail-card ul li::before {
    content: '•';
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-flow {
    padding: 100px 0;
    background: white;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.service-cta {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* IT事業ページ専用スタイル */
.tech-stack {
    padding: 100px 0;
    background: white;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tech-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    opacity: 0;
    transform: translateY(20px);
}

.tech-category.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.tech-category h3 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #4a90e2;
    color: white;
}

/* 修繕事業ページ専用スタイル */
.work-examples {
    padding: 100px 0;
    background: white;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.example-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.example-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.example-card:hover {
    transform: translateY(-5px);
}

.example-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.example-image svg {
    width: 100%;
    height: 100%;
}

.example-content {
    padding: 2rem;
}

.example-content h3 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.example-content p {
    color: #666;
    line-height: 1.6;
}

/* レスポンシブ対応（サービスページ） */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 320px;
        margin-top: 2rem;
    }

    .image-placeholder img {
        width: 95%;
        max-height: 280px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .features {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        height: 200px;
    }

    .image-placeholder img {
        width: 90%;
        max-height: 160px;
    }
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.philosophy-icon svg {
    width: 60px;
    height: 60px;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.philosophy-content h4 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #4a90e2 100%);
    color: white;
    text-align: center;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.philosophy-icon svg {
    width: 60px;
    height: 60px;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.philosophy-content h4 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.philosophy-content h4 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.philosophy-content h4 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    text-decoration: underline;
    text-decoration-color: #4a90e2;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    text-decoration: underline;
    text-decoration-color: #4a90e2;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ専用スタイル
   ======================================== */

   .philosophy-intro {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #002e5c;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.vision-section {
    padding: 100px 0;
    background: white;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

.philosophy-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 2rem;
}

.philosophy-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    position: relative;
    z-index: 1;
}

.philosophy-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.philosophy-subtitle {
    font-size: 1.2rem;
    color: #4a90e2;
    font-weight: 400;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 46, 92, 0.1);
    letter-spacing: 0.5px;
}

.philosophy-content h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    text-decoration: none;
}

.philosophy-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ミッション セクション */
.mission-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 46, 92, 0.1);
    opacity: 0;
    transform: translateX(-20px);
}

.point-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    color: #002e5c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ビジョン セクション */
.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.goal-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
}

.goal-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 1rem;
}

.goal-text h4 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.goal-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* バリュー セクション */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 46, 92, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.value-icon.everyone {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.value-icon.collaboration {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.value-icon.success {
    background: linear-gradient(135deg, #ff9800, #ef6c00);
}

.value-icon.celebration {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h4 {
    font-size: 1.4rem;
    color: #002e5c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.philosophy-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #002e5c 0%, #1565c0 100%);
    color: white;
    text-align: center;
    position: relative;
}

.philosophy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 92, 0.1);
    z-index: 1;
}

.philosophy-cta .container {
    position: relative;
    z-index: 2;
}

.philosophy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========================================
   企業理念ページ レスポンシブ対応
   ======================================== */

@media (max-width: 768px) {
    .philosophy-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .philosophy-icon {
        margin: 0 auto;
        width: 100px;
        height: 100px;
    }

    .philosophy-icon svg {
        width: 45px;
        height: 45px;
    }

    .philosophy-content h2 {
        font-size: 2.2rem;
        justify-content: center;
    }

    .philosophy-content h3 {
        font-size: 1.6rem;
    }

    .philosophy-content h4 {
        font-size: 1.3rem;
    }

    .mission-points {
        gap: 1.5rem;
    }

    .point-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .vision-goals {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .philosophy-cta h2 {
        font-size: 2rem;
    }

    .philosophy-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .philosophy-cta .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        font-weight: 600;
    }

    .philosophy-cta .btn-primary {
        background: #4a90e2;
        border-color: #4a90e2;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    }

    .philosophy-cta .btn-primary:hover {
        background: white;
        color: #4a90e2;
        border-color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    .philosophy-cta .btn-secondary {
        background: transparent;
        color: white;
        border-color: white;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .philosophy-cta .btn-secondary:hover {
        background: white;
        color: #002e5c;
        border-color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    }
}

@media (max-width: 480px) {
    .philosophy-icon {
        width: 90px;
        height: 90px;
    }

    .philosophy-icon svg {
        width: 40px;
        height: 40px;
    }

    .philosophy-content h2 {
        font-size: 1.8rem;
    }

    .philosophy-subtitle {
        font-size: 1rem;
    }

    .philosophy-content h3 {
        font-size: 1.4rem;
    }

    .philosophy-content h4 {
        font-size: 1.2rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon svg {
        width: 35px;
        height: 35px;
    }

    .goal-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   採用情報ページ company-values セクション専用修正
   ======================================== */

   .recruit-overview .company-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recruit-overview .value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    padding: 1rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #4a90e2;
}

.recruit-overview .value-item.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.recruit-overview .value-item:last-child {
    margin-bottom: 0;
}

.recruit-overview .value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.recruit-overview .value-content {
    flex: 1;
    min-width: 0;
}

.recruit-overview .value-content h3 {
    font-size: 1.3rem;
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.recruit-overview .value-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruit-overview .company-values {
        gap: 1rem;
    }
    
    .recruit-overview .value-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .recruit-overview .value-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
    
    .recruit-overview .value-content h3 {
        font-size: 1.2rem;
    }
    
    .recruit-overview .value-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .recruit-overview .value-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    
    .recruit-overview .value-content h3 {
        font-size: 1.1rem;
    }
    
    .recruit-overview .value-content p {
        font-size: 0.9rem;
    }
}

/* recruit.html の各職種カードに追加するスタイル */

.position-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 46, 92, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.position-details {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.position-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-requirements {
    flex: 1;
}

.position-requirements h4 {
    color: #002e5c;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
}

.position-requirements ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
}

.position-requirements li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.position-benefits {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.benefit-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.position-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.btn-entry {
    width: 100%;
    background: linear-gradient(135deg, #4a90e2, #002e5c);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-entry:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
    background: linear-gradient(135deg, #002e5c, #1565c0);
}

.btn-entry svg {
    width: 18px;
    height: 18px;
}

/* CTAボタンのスタイル更新 */
.recruit-cta .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.recruit-cta .btn {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

@media (max-width: 768px) {
    .recruit-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .recruit-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}